[llvm-commits] CVS: llvm/Makefile.config.in

Reid Spencer reid at x10sys.com
Sat Jan 15 22:53:59 PST 2005



Changes in directory llvm:

Makefile.config.in updated: 1.47 -> 1.48
---
Log message:

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.


---
Diffs of the changes:  (+1 -1)

Index: llvm/Makefile.config.in
diff -u llvm/Makefile.config.in:1.47 llvm/Makefile.config.in:1.48
--- llvm/Makefile.config.in:1.47	Sat Jan 15 20:20:42 2005
+++ llvm/Makefile.config.in	Sun Jan 16 00:53:48 2005
@@ -45,7 +45,7 @@
 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






More information about the llvm-commits mailing list