From 0ced4fbcd73eb1a824f7454e8573b12421ac1e86 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Wed, 24 Aug 2005 10:55:07 +0000 Subject: [PATCH] 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 --- Makefile.rules | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.rules b/Makefile.rules index 09c0a9c1722..61e683239e8 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