diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-06-17 11:08:09 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-06-17 11:08:09 +0000 |
commit | b2507b3926125100c7e27f95b3abddd0c2a22f5b (patch) | |
tree | f95b1c7604514da8ec1c4231bdc0692b8697c6f4 /llvm/Makefile.rules | |
parent | e11f467dda1666d9cc5b2f760e39f1233e0becfb (diff) | |
download | bcm5719-llvm-b2507b3926125100c7e27f95b3abddd0c2a22f5b.tar.gz bcm5719-llvm-b2507b3926125100c7e27f95b3abddd0c2a22f5b.zip |
Don't force remove config.cache on reconfiguration.
config.cache will be used by the person who specifies '-C' to configure.
config.cache's inconsistency should be responsible to him.
Re-configuration would spend so much on cygming without '-C', esp. cygwin.
llvm-svn: 133252
Diffstat (limited to 'llvm/Makefile.rules')
-rw-r--r-- | llvm/Makefile.rules | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules index 162fd235522..98c72c0d055 100644 --- a/llvm/Makefile.rules +++ b/llvm/Makefile.rules @@ -123,9 +123,6 @@ $(BUILT_SOURCES) : $(ObjMakefiles) reconfigure: $(Echo) Reconfiguring $(PROJ_OBJ_ROOT) $(Verb) cd $(PROJ_OBJ_ROOT) && \ - if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \ - $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \ - fi ; \ $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \ $(ConfigStatusScript) @@ -133,9 +130,6 @@ reconfigure: $(ConfigStatusScript): $(ConfigureScript) $(Echo) Reconfiguring with $< $(Verb) cd $(PROJ_OBJ_ROOT) && \ - if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \ - $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \ - fi ; \ $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \ $(ConfigStatusScript) |