From 2f7e7231ad6128af80102fa2031f483e00e7a2bc Mon Sep 17 00:00:00 2001 From: Cyrus Harmon Date: Tue, 8 Mar 2011 01:44:41 +0000 Subject: [PATCH] 1.0.46.29: fix run-compiler.sh for darwin/x86 * default arch is now x86_64, so check for x86 and use arch i386 if appropriate --- tests/run-compiler.sh | 4 ++++ version.lisp-expr | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/run-compiler.sh b/tests/run-compiler.sh index 3532fe3..d1a4755 100644 --- a/tests/run-compiler.sh +++ b/tests/run-compiler.sh @@ -12,6 +12,10 @@ case "$platform" in Darwin-X86-64) args="-arch x86_64" ;; esac +case "$platform" in + Darwin-X86) args="-arch i386" ;; +esac + while [ $# -gt 0 ]; do arg="$1" new= diff --git a/version.lisp-expr b/version.lisp-expr index 7484d9c..b743558 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -20,4 +20,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.46.28" +"1.0.46.29" -- 1.7.10.4