From: Nikodemus Siivola Date: Sat, 21 Aug 2010 09:41:15 +0000 (+0000) Subject: 1.0.41.54: fix binary-distribution.sh for configurable prefixes X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=99ec18558c32c84ffc8272196ce8fd7e9e0bd034;p=sbcl.git 1.0.41.54: fix binary-distribution.sh for configurable prefixes ...that is, also include the file prefix.def, which specifies where the system is configured to install. Now that I think of it, it might be more elegant to be able to query the runtime about its default SBCL_HOME, actually... Thanks to Bruce O'Neel. --- diff --git a/binary-distribution.sh b/binary-distribution.sh index c6d3db9..234cc4f 100755 --- a/binary-distribution.sh +++ b/binary-distribution.sh @@ -11,7 +11,7 @@ set -e b=${1:?"missing base directory name argument"} tar -cf $b-binary.tar \ - $b/output/sbcl.core $b/src/runtime/sbcl \ + $b/output/sbcl.core $b/src/runtime/sbcl $b/output/prefix.def \ $b/BUGS $b/COPYING $b/CREDITS $b/INSTALL $b/NEWS $b/README \ $b/install.sh $b/find-gnumake.sh $b/sbcl-pwd.sh $b/run-sbcl.sh \ $b/doc/sbcl.1 \ diff --git a/version.lisp-expr b/version.lisp-expr index 9111789..8b4db62 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.41.53" +"1.0.41.54"