From: NIIMI Satoshi Date: Tue, 31 Jul 2007 03:10:46 +0000 (+0000) Subject: 1.0.8.12: Fix tests/foreign.test.sh on FreeBSD7/amd64 X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=874586929c175a28728a632d4b2123365bd63851;p=sbcl.git 1.0.8.12: Fix tests/foreign.test.sh on FreeBSD7/amd64 --- diff --git a/tests/foreign.test.sh b/tests/foreign.test.sh index 6d78488..2f1f405 100644 --- a/tests/foreign.test.sh +++ b/tests/foreign.test.sh @@ -27,7 +27,7 @@ testfilestem=${TMPDIR:-/tmp}/sbcl-foreign-test-$$ build_so() { echo building $1.so - if [ "`uname -m`" = x86_64 ]; then + if [ "`uname -m`" = x86_64 -o "`uname -m`" = amd64 ]; then CFLAGS="$CFLAGS -fPIC" fi if [ "`uname`" = Darwin ]; then diff --git a/version.lisp-expr b/version.lisp-expr index 846fcb0..f3dc9d7 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.8.11" +"1.0.8.12"