Codebase list slib / 52efbb5
Re-add -:s option to gsi in wrapper script Syntax error is a bug in Gambit 4.9.3 Nick Gasson 3 years ago
3 changed file(s) with 0 addition(s) and 28 deletion(s). Raw diff Collapse all Expand all
1010 - Fix warning when loading guile.init with guile-3.0.
1111 - Make sure PACKAGE_TARNAME in configure script does not depend on
1212 current working directory. Otherwise the build is not reproducible.
13 - Remove the -:s option to gsi when starting Gambit with the slib
14 wrapper script as this causes a syntax error.
1513 - Do not set the LD_LIBRARY_PATH environment variable when starting
1614 Gambit through the slib wrapper script.
1715 * debian/tests: add autopkg tests for scm, mit-scheme, guile-2.2,
+0
-25
debian/patches/0011-slib.sh-Do-not-pass-s-to-gsi-as-it-causes-an-error.patch less more
0 From: Nick Gasson <nick@nickg.me.uk>
1 Date: Mon, 4 Jan 2021 21:40:03 +0800
2 Subject: slib.sh: Do not pass -:s to gsi as it causes an error
3
4 *** ERROR -- Ill-formed special form: syntax-error
5 (##syntax-error %%%%tmp92101)
6
7 Forwarded: https://lists.gnu.org/archive/html/slib-discuss/2021-01/msg00000.html
8 ---
9 slib.sh | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12 diff --git a/slib.sh b/slib.sh
13 index a033f78..e386fbb 100755
14 --- a/slib.sh
15 +++ b/slib.sh
16 @@ -118,7 +118,7 @@ esac
17 case $implementation in
18 scm) exec $command -ip1 -l ${SCHEME_LIBRARY_PATH}scm.init "$@";;
19 elk) exec $command -i -l ${SCHEME_LIBRARY_PATH}elk.init "$@";;
20 - gam) exec $command -:s ${SCHEME_LIBRARY_PATH}gambit.init - "$@";;
21 + gam) exec $command ${SCHEME_LIBRARY_PATH}gambit.init - "$@";;
22 gch) exec $command -l ${SCHEME_LIBRARY_PATH}gosh.init "$@";;
23 ssc) exec $command -e "(load \"${SCHEME_LIBRARY_PATH}sisc.init\")" -- "$@";;
24 kwa) exec $command -f ${SCHEME_LIBRARY_PATH}kawa.init -- "$@";;
77 0008-guile-2.init-pass-declarative-f-to-define-module-for.patch
88 0009-configure-PACKAGE_TARNAME-should-not-depend-on-pwd.patch
99 0010-slib.sh-do-not-set-LD_LIBRARY_PATH-when-starting-Gam.patch
10 0011-slib.sh-Do-not-pass-s-to-gsi-as-it-causes-an-error.patch