blob: fad1367c4813b6eb716ec17fdd054bb48502b7e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
SYS=@SYS@
# Use the Common Lisp Controller image in preference to the standard
# image.
if [ -x $SYS/saved_ansi_gcl ] ; then
EXE=saved_ansi_gcl;
else
EXE=saved_ansi_gcl.dist;
fi
exec $SYS/$EXE -dir $SYS/ -libdir @DIR@/ \
-eval '(setq si::*allow-gzipped-file* t)' \
-eval '(setq si::*tk-library* "/usr/lib/tk@TKVERS@")' \
"$@"
# other options: -load /tmp/foo.o -load jo.lsp -eval "(joe 3)"
|