diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-25 07:28:19 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-25 07:28:19 +0000 |
commit | efbe40ada6e76cc265b3feab7ab57db870ce0f22 (patch) | |
tree | a159c591ff587ca33277fa408ae9b7a28d99b647 /autoconf | |
parent | d4c8bea47fd3403ff1f3786b99ff11e6e1b5fc09 (diff) | |
download | external_llvm-efbe40ada6e76cc265b3feab7ab57db870ce0f22.zip external_llvm-efbe40ada6e76cc265b3feab7ab57db870ce0f22.tar.gz external_llvm-efbe40ada6e76cc265b3feab7ab57db870ce0f22.tar.bz2 |
Gack. Actually use the correct variable name in setting the JIT support.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18240 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 8d4999a..4f300b7 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -179,7 +179,7 @@ if test ${enableval} = "no" then AC_SUBST(JIT,[[]]) else - case "$llvm_cv_target_architecture" in + case "$llvm_cv_target_arch" in x86) AC_SUBST(JIT,[[TARGET_HAS_JIT=1]]) ;; Sparc) AC_SUBST(JIT,[[TARGET_HAS_JIT=1]]) ;; PowerPC) AC_SUBST(JIT,[[TARGET_HAS_JIT=1]]) ;; |