[llvm-commits] [llvm] r153980 - /llvm/trunk/utils/buildit/GNUmakefile

Bob Wilson bob.wilson at apple.com
Tue Apr 3 16:44:40 PDT 2012


Author: bwilson
Date: Tue Apr  3 18:44:39 2012
New Revision: 153980

URL: http://llvm.org/viewvc/llvm-project?rev=153980&view=rev
Log:
Fix the install location for the Embedded makefile target.

svn r145378 inadvertently changed the destination for the Embedded target
in the makefile.  Add a "/Developer" suffix to DSTROOT to compensate.

Modified:
    llvm/trunk/utils/buildit/GNUmakefile

Modified: llvm/trunk/utils/buildit/GNUmakefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/buildit/GNUmakefile?rev=153980&r1=153979&r2=153980&view=diff
==============================================================================
--- llvm/trunk/utils/buildit/GNUmakefile (original)
+++ llvm/trunk/utils/buildit/GNUmakefile Tue Apr  3 18:44:39 2012
@@ -79,7 +79,7 @@
 
 Embedded:
 	ARM_PLATFORM=`xcodebuild -version -sdk iphoneos PlatformPath` && \
-	$(MAKE) DSTROOT=$(DSTROOT)$$ARM_PLATFORM install
+	$(MAKE) DSTROOT=$(DSTROOT)$$ARM_PLATFORM/Developer install
 
 # installhdrs does nothing, because the headers aren't useful until
 # the compiler is installed.





More information about the llvm-commits mailing list