summaryrefslogtreecommitdiff
path: root/tools/llvm-config
diff options
context:
space:
mode:
authorJordan Rose <jordan_rose@apple.com>2012-09-26 00:01:00 +0000
committerJordan Rose <jordan_rose@apple.com>2012-09-26 00:01:00 +0000
commit85042e658558e32a168a91379d158e6d694d6530 (patch)
tree695f7858be1b2d4d5fccc8ceba3346fbc9c00529 /tools/llvm-config
parent3757ff1a68b37e622ccd98ca8bb0c22c17ac6514 (diff)
downloadllvm-85042e658558e32a168a91379d158e6d694d6530.tar.gz
llvm-85042e658558e32a168a91379d158e6d694d6530.tar.bz2
llvm-85042e658558e32a168a91379d158e6d694d6530.tar.xz
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 r164633 / ba48ceb1a3802e20e781ef04ea2573ffae2ac414. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164651 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-config')
-rw-r--r--tools/llvm-config/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-config/Makefile b/tools/llvm-config/Makefile
index b20b6bf4a4..e8c86929e1 100644
--- a/tools/llvm-config/Makefile
+++ b/tools/llvm-config/Makefile
@@ -63,5 +63,5 @@ ifeq ($(LLVM_CROSS_COMPILING),1)
install:: $(DESTDIR)$(PROJ_bindir)
$(Echo) Installing llvm-config-host
$(Verb) $(ProgInstall) $(BuildLLVMToolDir)/llvm-config \
- $(DESTDIR)$(PROJ_bindir)/$(program_prefix)llvm-config-host
+ $(DESTDIR)$(PROJ_bindir)/llvm-config-host
endif