summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2010-01-05 20:45:13 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2010-01-05 20:45:13 +0000
commit0addbf5817d3342a512b7b10ac4de8126d2e505e (patch)
tree4cec442fd5ca767fcc1307d6b66d8b3ce738f89a /autoconf
parent3e30c2a3c54c50246e6cccf0c8842619e29fe66c (diff)
downloadllvm-0addbf5817d3342a512b7b10ac4de8126d2e505e.tar.gz
llvm-0addbf5817d3342a512b7b10ac4de8126d2e505e.tar.bz2
llvm-0addbf5817d3342a512b7b10ac4de8126d2e505e.tar.xz
Proper deduce z/System LLVM target from target triple when
--enable-targets=host is specified. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92762 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 9ebaadc3bb..7915593db4 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -512,7 +512,7 @@ case "$enableval" in
PIC16) TARGETS_TO_BUILD="PIC16 $TARGETS_TO_BUILD" ;;
XCore) TARGETS_TO_BUILD="XCore $TARGETS_TO_BUILD" ;;
MSP430) TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
- SystemZ) TARGETS_TO_BUILD="SystemZ $TARGETS_TO_BUILD" ;;
+ s390x) TARGETS_TO_BUILD="SystemZ $TARGETS_TO_BUILD" ;;
Blackfin) TARGETS_TO_BUILD="Blackfin $TARGETS_TO_BUILD" ;;
*) AC_MSG_ERROR([Can not set target to build]) ;;
esac ;;