diff options
| author | Bob Wilson <bob.wilson@apple.com> | 2012-04-03 23:44:39 +0000 |
|---|---|---|
| committer | Bob Wilson <bob.wilson@apple.com> | 2012-04-03 23:44:39 +0000 |
| commit | 3e66d7325977a6ebc5644329db895f50b483c14f (patch) | |
| tree | 11189e7c543a8bc2a07f363aa2e7a93afa89e5ac | |
| parent | afc0d6a36f06532ad4e7f865f07122aef0e0d29e (diff) | |
| download | bcm5719-llvm-3e66d7325977a6ebc5644329db895f50b483c14f.tar.gz bcm5719-llvm-3e66d7325977a6ebc5644329db895f50b483c14f.zip | |
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.
llvm-svn: 153980
| -rw-r--r-- | llvm/utils/buildit/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/buildit/GNUmakefile b/llvm/utils/buildit/GNUmakefile index bdf87d560fd..fc5578a6846 100644 --- a/llvm/utils/buildit/GNUmakefile +++ b/llvm/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. |

