summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-08-16 16:39:59 +0000
committerBob Wilson <bob.wilson@apple.com>2010-08-16 16:39:59 +0000
commit0ab754b25ae3fb1a9ebd09585c70084f9400f69d (patch)
tree7c8edf54a4e92943b803d479257768a661fc25d3 /utils
parentabf8f9cbb848dc9602494074875b187072928edc (diff)
downloadllvm-0ab754b25ae3fb1a9ebd09585c70084f9400f69d.tar.gz
llvm-0ab754b25ae3fb1a9ebd09585c70084f9400f69d.tar.bz2
llvm-0ab754b25ae3fb1a9ebd09585c70084f9400f69d.tar.xz
Install Embedded builds into usr/local. Radar 8313723.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111149 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/buildit/GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/buildit/GNUmakefile b/utils/buildit/GNUmakefile
index 08904e6563..54577e2ef5 100644
--- a/utils/buildit/GNUmakefile
+++ b/utils/buildit/GNUmakefile
@@ -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.