[llvm-commits] CVS: llvm/Makefile.config.in
Reid Spencer
reid at x10sys.com
Mon Aug 7 16:23:55 PDT 2006
Changes in directory llvm:
Makefile.config.in updated: 1.63 -> 1.64
---
Log message:
Make the name of the project consistent with that specified in the
configure.ac file. This fixes some case-consistency issues between the name
of the tarball created by "make dist" and the tarball used for source when
building the LLVM RPM package.
---
Diffs of the changes: (+2 -2)
Makefile.config.in | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/Makefile.config.in
diff -u llvm/Makefile.config.in:1.63 llvm/Makefile.config.in:1.64
--- llvm/Makefile.config.in:1.63 Fri Aug 4 13:18:07 2006
+++ llvm/Makefile.config.in Mon Aug 7 18:23:39 2006
@@ -36,13 +36,13 @@
PWD := @BINPWD@
# Set the project name to LLVM if its not defined
ifndef PROJECT_NAME
-PROJECT_NAME := LLVM
+PROJECT_NAME := $(LLVMPackageName)
endif
PROJ_OBJ_DIR := $(shell $(PWD))
PROJ_OBJ_ROOT := $(shell cd $(PROJ_OBJ_DIR)/$(LEVEL); $(PWD))
-ifeq ($(PROJECT_NAME),LLVM)
+ifeq ($(PROJECT_NAME),llvm)
LLVM_SRC_ROOT := $(shell cd @abs_top_srcdir@; $(PWD))
LLVM_OBJ_ROOT := $(shell cd @abs_top_builddir@; $(PWD))
PROJ_SRC_ROOT := $(shell cd $(LLVM_SRC_ROOT); $(PWD))
More information about the llvm-commits
mailing list