diff options
author | Sebastian Pop <spop@codeaurora.org> | 2012-09-25 21:15:08 +0000 |
---|---|---|
committer | Sebastian Pop <spop@codeaurora.org> | 2012-09-25 21:15:08 +0000 |
commit | ba48ceb1a3802e20e781ef04ea2573ffae2ac414 (patch) | |
tree | df200ad0a959967ae2259f0fbf9a7d9fa7bccbe7 /Makefile.rules | |
parent | 2039a8f83464e900a71f3e846c7749b2d0d8cde2 (diff) |
Add --program-prefix support to build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164633 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r-- | Makefile.rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules index 289adc2be4..f74c6f5ada 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -1541,7 +1541,7 @@ ToolBinDir = $(DESTDIR)$(PROJ_internal_prefix)/bin else ToolBinDir = $(DESTDIR)$(PROJ_bindir) endif -DestTool = $(ToolBinDir)/$(TOOLEXENAME) +DestTool = $(ToolBinDir)/$(program_prefix)$(TOOLEXENAME) install-local:: $(DestTool) @@ -1556,7 +1556,7 @@ uninstall-local:: # TOOLALIAS install. ifdef TOOLALIAS -DestToolAlias = $(ToolBinDir)/$(TOOLALIAS)$(EXEEXT) +DestToolAlias = $(ToolBinDir)/$(program_prefix)$(TOOLALIAS)$(EXEEXT) install-local:: $(DestToolAlias) |