[llvm-commits] [llvm] r85605 - /llvm/trunk/Makefile
Jim Grosbach
grosbach at apple.com
Fri Oct 30 12:51:33 PDT 2009
Author: grosbach
Date: Fri Oct 30 14:51:32 2009
New Revision: 85605
URL: http://llvm.org/viewvc/llvm-project?rev=85605&view=rev
Log:
update name check for Apple style builds to be more permissive
Modified:
llvm/trunk/Makefile
Modified: llvm/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile?rev=85605&r1=85604&r2=85605&view=diff
==============================================================================
--- llvm/trunk/Makefile (original)
+++ llvm/trunk/Makefile Fri Oct 30 14:51:32 2009
@@ -24,7 +24,9 @@
# "llvmCore", then this is an "Apple-style" build; search for
# "Apple-style" in the comments for more info. Anything else is a
# normal build.
-ifneq ($(RC_ProjectName),llvmCore) # Normal build (not "Apple-style").
+#ifneq ($(RC_ProjectName),llvmCore) # Normal build (not "Apple-style").
+ifneq ($(findstring llvmCore, $(RC_ProjectName)),llvmCore) # Normal build (not "Apple-style").
+
ifeq ($(BUILD_DIRS_ONLY),1)
DIRS := lib/System lib/Support utils
OPTIONAL_DIRS :=
More information about the llvm-commits
mailing list