aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-08-24 10:55:07 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-08-24 10:55:07 +0000
commit0ced4fbcd73eb1a824f7454e8573b12421ac1e86 (patch)
tree7f8b7f7f18b47b0f77e72b43c11dce40e86a03f4
parent755bcf086dc163d72d1d2fa1f1d708f6ac75910a (diff)
Whoops, don't use PROJ variables, these are all LLVM headers. This allows
projects to compile properly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23007 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--Makefile.rules6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 09c0a9c172..61e683239e 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -84,7 +84,7 @@ ifneq ($(MakefileConfigIn),)
PreConditions += $(MakefileConfig)
endif
-FilesToConfigPATH := $(addprefix $(PROJ_OBJ_ROOT)/,$(FilesToConfig))
+FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
PreConditions += $(FilesToConfigPATH)
preconditions : $(PreConditions)
@@ -145,9 +145,9 @@ $(ConfigStatusScript): $(ConfigureScript)
$(ConfigStatusScript)
.PRECIOUS: $(FilesToConfigPATH)
-$(FilesToConfigPATH) : $(PROJ_OBJ_ROOT)/% : $(PROJ_SRC_ROOT)/%.in
+$(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
$(Echo) Regenerating $*
- $(Verb) cd $(PROJ_OBJ_ROOT) && $(ConfigStatusScript) $*
+ $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
#------------------------------------------------------------------------
# Make sure the configuration makefile is up to date