summaryrefslogtreecommitdiff
path: root/utils/buildit
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2012-04-03 23:44:39 +0000
committerBob Wilson <bob.wilson@apple.com>2012-04-03 23:44:39 +0000
commita348fecf2fab7bf075b1dfcd02dfa36d16df7659 (patch)
tree60a9d167f53161b5dd43ab576bd7a48011c7697d /utils/buildit
parentc35146b7254900b34ecad51fb71f9478360ca0b9 (diff)
downloadllvm-a348fecf2fab7bf075b1dfcd02dfa36d16df7659.tar.gz
llvm-a348fecf2fab7bf075b1dfcd02dfa36d16df7659.tar.bz2
llvm-a348fecf2fab7bf075b1dfcd02dfa36d16df7659.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153980 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/buildit')
-rw-r--r--utils/buildit/GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/buildit/GNUmakefile b/utils/buildit/GNUmakefile
index bdf87d560f..fc5578a684 100644
--- a/utils/buildit/GNUmakefile
+++ b/utils/buildit/GNUmakefile
@@ -79,7 +79,7 @@ EmbeddedSim:
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.