diff options
author | dos-reis <gdr@axiomatics.org> | 2013-07-04 17:27:15 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2013-07-04 17:27:15 +0000 |
commit | c4fe1c125465782343958edcad8123e14b330f83 (patch) | |
tree | f4d1cada1921a576f37337413ad43e361eb60774 /config | |
parent | 75562692f6375a5ce067997d494a3238eb77f6d5 (diff) | |
download | open-axiom-c4fe1c125465782343958edcad8123e14b330f83.tar.gz |
Fix typo.
Diffstat (limited to 'config')
-rw-r--r-- | config/open-axiom.m4 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/config/open-axiom.m4 b/config/open-axiom.m4 index ec51ac8e..44d5a4eb 100644 --- a/config/open-axiom.m4 +++ b/config/open-axiom.m4 @@ -31,21 +31,21 @@ if test x"$oa_include_gcl" != xyes; then case $AXIOM_LISP in *gcl*) AC_MSG_CHECKING([$AXIOM_LISP version]) - openaxiom_gcl_version=`$AXIOM_LISP -batch -eval "(format t \"~S\" (lisp-implementation-version))"` - AC_MSG_RESULT([$openaxiom_gcl_version]) - case $v in + openaxiom_lisp_version=`$AXIOM_LISP -batch -eval "(format t \"~S\" (lisp-implementation-version))"` + AC_MSG_RESULT([$openaxiom_lisp_version]) + case $openaxiom_lisp_version in *2.6.7*|*2.6.8*|*2.6.9*) ;; # OK *) - AC_MSG_WARN([$v is not supported by this version of OpenAxiom.]) + AC_MSG_WARN([$openaxiom_lisp_version is not supported by this version of OpenAxiom.]) ;; esac ;; # SBCL-1.0.29 has a nasty regression that prevents OpenAxiom build *sbcl*) AC_MSG_CHECKING([$AXIOM_LISP version]) - v=`$AXIOM_LISP --version` - AC_MSG_RESULT([$v]) - case $v in + openaxiom_lisp_version=`$AXIOM_LISP --version` + AC_MSG_RESULT([$openaxiom_lisp_version]) + case $openaxiom_lisp_version in *1.0.29) AC_MSG_ERROR([This version of SBCL has a bug that breaks OpenAxiom build. Consider SBCL-1.0.30 or higher.]) ;; |