From a348fecf2fab7bf075b1dfcd02dfa36d16df7659 Mon Sep 17 00:00:00 2001 From: Bob Wilson Date: Tue, 3 Apr 2012 23:44:39 +0000 Subject: [PATCH] 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 --- utils/buildit/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/buildit/GNUmakefile b/utils/buildit/GNUmakefile index bdf87d560fd..fc5578a6846 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. -- 2.34.1