diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2007-07-23 08:09:15 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2007-07-23 08:09:15 +0000 |
| commit | 63ebdf79948269106d81fed7830d67dbb68545ca (patch) | |
| tree | 573e69c680d146715ff025766f16c8d4e89c7c2d | |
| parent | 5cdfebbf10bb7abde0fa5d487155ec7e25d732a0 (diff) | |
| download | bcm5719-llvm-63ebdf79948269106d81fed7830d67dbb68545ca.tar.gz bcm5719-llvm-63ebdf79948269106d81fed7830d67dbb68545ca.zip | |
Remove bizarre use of /dev/null in a makefile include line that
produces warning from make about bad timestamp on /dev/null
Patch by Holger Schurig.
llvm-svn: 40426
| -rw-r--r-- | llvm/Makefile.rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules index 2852ac38bfc..4f1ceb79605 100644 --- a/llvm/Makefile.rules +++ b/llvm/Makefile.rules @@ -391,7 +391,7 @@ endif ifndef VERBOSE Verb := @ LibTool.Flags += --silent - AR.Flags += >/dev/null 2>/dev/null + AR.Flags += ">/dev/null 2>/dev/null" ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1 else ConfigureScriptFLAGS := @@ -1471,7 +1471,7 @@ ifneq ($(strip $(filter-out clean clean-local dist-clean,$(MAKECMDGOALS)))),) DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources))) DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d) --include /dev/null $(DependFiles) +-include $(DependFiles) endif |

