Install Embedded builds into usr/local. Radar 8313723.
authorBob Wilson <bob.wilson@apple.com>
Mon, 16 Aug 2010 16:39:59 +0000 (16:39 +0000)
committerBob Wilson <bob.wilson@apple.com>
Mon, 16 Aug 2010 16:39:59 +0000 (16:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111149 91177308-0d34-0410-b5e6-96231b3b80d8

utils/buildit/GNUmakefile

index 08904e656352d4e880fe4ccdde59ac6b271cef92..54577e2ef53842a1e9dba32c75016ec948fa3e22 100644 (file)
@@ -71,14 +71,14 @@ install: $(OBJROOT) $(SYMROOT) $(DSTROOT)
            $(RC_ProjectSourceVersion) $(RC_ProjectSourceSubversion) 
 
 EmbeddedHosted:
-       $(MAKE) ARM_HOSTED_BUILD=yes PREFIX=/usr install
+       $(MAKE) ARM_HOSTED_BUILD=yes PREFIX=/usr/local install
 
 # When building for the iOS simulator, MACOSX_DEPLOYMENT_TARGET is not set
 # by default, but it needs to be set when building tools that run on the host
 # (e.g., tblgen), so set it here.
 EmbeddedSim:
        export MACOSX_DEPLOYMENT_TARGET=`sw_vers -productVersion`; \
-       $(MAKE) IOS_SIM_BUILD=yes PREFIX=$(SDKROOT)/usr install
+       $(MAKE) IOS_SIM_BUILD=yes PREFIX=$(SDKROOT)/usr/local install
 
 # installhdrs does nothing, because the headers aren't useful until
 # the compiler is installed.