Skip to content

Commit 99ec185

Browse files
committed
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.
1 parent c22ea07 commit 99ec185

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

binary-distribution.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ set -e
1111

1212
b=${1:?"missing base directory name argument"}
1313
tar -cf $b-binary.tar \
14-
$b/output/sbcl.core $b/src/runtime/sbcl \
14+
$b/output/sbcl.core $b/src/runtime/sbcl $b/output/prefix.def \
1515
$b/BUGS $b/COPYING $b/CREDITS $b/INSTALL $b/NEWS $b/README \
1616
$b/install.sh $b/find-gnumake.sh $b/sbcl-pwd.sh $b/run-sbcl.sh \
1717
$b/doc/sbcl.1 \

version.lisp-expr

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
;;; checkins which aren't released. (And occasionally for internal
1818
;;; versions, especially for internal versions off the main CVS
1919
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
20-
"1.0.41.53"
20+
"1.0.41.54"

0 commit comments

Comments
 (0)