1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Restore ability to build archives (oops)

Fix -include line so it doesn't reference /dev/null

llvm-svn: 40429
This commit is contained in:
Reid Spencer 2007-07-23 08:20:46 +00:00
parent 6f1704a3ad
commit 35a72e2e77

View File

@ -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 $(DependFiles)
-include $(DependFiles) ""
endif