diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2005-01-16 06:53:48 +0000 | 
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2005-01-16 06:53:48 +0000 | 
| commit | 12adad4b2f4bdee714c9dcdc5edea76b2382cbe8 (patch) | |
| tree | 02dd900ad8f1de13d2edd9039afa3916caa20fc2 /llvm | |
| parent | 3ba56b3fe7a44b574b14a629652cc22bb6505884 (diff) | |
| download | bcm5719-llvm-12adad4b2f4bdee714c9dcdc5edea76b2382cbe8.tar.gz bcm5719-llvm-12adad4b2f4bdee714c9dcdc5edea76b2382cbe8.zip  | |
Don't confuse the LLVM_OBJ_DIR and the PROJ_OBJ_DIR because there might be
a symbolic link making the autoconf name for the directory (LLVM_OBJ_ROOT)
and the "make" name for the directory (PROJ_OBJ_ROOT) different.
llvm-svn: 19607
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/Makefile.config.in | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/Makefile.config.in b/llvm/Makefile.config.in index 7c36e9dbb11..2d03272fe97 100644 --- a/llvm/Makefile.config.in +++ b/llvm/Makefile.config.in @@ -45,7 +45,7 @@ ifeq ($(PROJECT_NAME),LLVM)  LLVM_SRC_ROOT   := @abs_top_srcdir@  LLVM_OBJ_ROOT   := @abs_top_builddir@  PROJ_SRC_ROOT   := $(LLVM_SRC_ROOT) -PROJ_SRC_DIR    := $(subst //,/,$(LLVM_SRC_ROOT)/$(patsubst $(LLVM_OBJ_ROOT)%,%,$(PROJ_OBJ_DIR))) +PROJ_SRC_DIR    := $(subst //,/,$(LLVM_SRC_ROOT)/$(patsubst $(PROJ_OBJ_ROOT)%,%,$(PROJ_OBJ_DIR)))  PROJ_prefix     := @prefix@  PROJ_bindir     := @prefix@/bin  PROJ_libdir     := @prefix@/lib  | 

