aboutsummaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorJordan Rose <jordan_rose@apple.com>2012-09-26 00:00:53 +0000
committerJordan Rose <jordan_rose@apple.com>2012-09-26 00:00:53 +0000
commitb5d2970eaddd4b03446e238034d85180ddb965c2 (patch)
tree8f9218615e1fce3837c730e0630608f7d9d156bd /Makefile.rules
parent6ea6ea0568cb9f283f70943b650d47e8996ff7d3 (diff)
Revert "Add --program-prefix support to build"
The Apple buildbots are set up to pass --target to configure for both cross- and non-cross-compile builds, and the standard autoconf response to this is to set the program prefix to '<target>-'. Until we can figure out the proper way to handle this (don't pass --target? pass an explicit --program-prefix=""? don't auto-populate program_prefix with target_alias?) it's more important to keep the buildbots running. This reverts r164632. git-svn-id: https://llvm.org/svn/llvm-project/test-suite/trunk@164650 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 76a2e11a..27dac243 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -869,7 +869,7 @@ $(TOOLEXENAME_P): $(ObjectsP) $(USED_LIB_PATHS_P) $(LLVM_LIB_PATHS_P) $(DESTTOOL
install:: $(TOOLEXENAMES)
@${ECHO} Installing $(TOOLEXENAMES) to $(DESTDIR)$(bindir)
$(VERB)$(MKDIR) $(DESTDIR)$(bindir)
- $(VERB)$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) -c -m 0755 $(TOOLEXENAMES) $(DESTDIR)$(bindir)/$(program_prefix)$(TOOLNAME)
+ $(VERB)$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) -c -m 0755 $(TOOLEXENAMES) $(DESTDIR)$(bindir)/$(TOOLNAME)
endif