summaryrefslogtreecommitdiff
path: root/Makefile.config.in
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-08-07 23:23:39 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-08-07 23:23:39 +0000
commit1b22fde3b225e4e465e6b53ca9ce03461223488f (patch)
treeb7f1d6938b2a3fbc2d8857fc811e6d6603d37c1e /Makefile.config.in
parentdc4f6bea6ca3ddb621544b3fbf86914e542b5156 (diff)
downloadllvm-1b22fde3b225e4e465e6b53ca9ce03461223488f.tar.gz
llvm-1b22fde3b225e4e465e6b53ca9ce03461223488f.tar.bz2
llvm-1b22fde3b225e4e465e6b53ca9ce03461223488f.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29554 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r--Makefile.config.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.config.in b/Makefile.config.in
index 4252148e47..c72390681b 100644
--- a/Makefile.config.in
+++ b/Makefile.config.in
@@ -36,13 +36,13 @@ LLVM_CONFIGTIME := @LLVM_CONFIGTIME@
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))