diff options
author | Jordan Rose <jordan_rose@apple.com> | 2012-10-01 18:40:32 +0000 |
---|---|---|
committer | Jordan Rose <jordan_rose@apple.com> | 2012-10-01 18:40:32 +0000 |
commit | 3c837abd2bd0ed818f7a9b0fb18f7b5b35567ea9 (patch) | |
tree | f67c5416e6107c6b457281d6c371d258e95538a5 /llvm/projects/sample | |
parent | 4a5b35eeec9412fca288ff8e7d51fcc6f473b319 (diff) | |
download | bcm5719-llvm-3c837abd2bd0ed818f7a9b0fb18f7b5b35567ea9.tar.gz bcm5719-llvm-3c837abd2bd0ed818f7a9b0fb18f7b5b35567ea9.zip |
Re-enable support for --program-prefix.
The Apple buildbots have been modified not to pass --target,
so they shouldn't choke on a default program prefix anymore.
Patch by Rick Foos!
llvm-svn: 164956
Diffstat (limited to 'llvm/projects/sample')
-rw-r--r-- | llvm/projects/sample/Makefile.llvm.rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/projects/sample/Makefile.llvm.rules b/llvm/projects/sample/Makefile.llvm.rules index a6553020f86..7ed1c1b4ed6 100644 --- a/llvm/projects/sample/Makefile.llvm.rules +++ b/llvm/projects/sample/Makefile.llvm.rules @@ -1437,7 +1437,7 @@ install-local:: uninstall-local:: $(Echo) Uninstall circumvented with NO_INSTALL else -DestTool = $(DESTDIR)$(PROJ_bindir)/$(TOOLEXENAME) +DestTool = $(DESTDIR)$(PROJ_bindir)/$(program_prefix)$(TOOLEXENAME) install-local:: $(DestTool) @@ -1451,7 +1451,7 @@ uninstall-local:: # TOOLALIAS install. ifdef TOOLALIAS -DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT) +DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(program_prefix)$(TOOLALIAS)$(EXEEXT) install-local:: $(DestToolAlias) |