blob: 73560459d909ff48ee4c060e7c24358f883d57b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
$NetBSD: patch-ad,v 1.3 2000/10/15 02:23:56 jlam Exp $
--- setup.shell.orig Wed Sep 7 10:34:36 1994
+++ setup.shell
@@ -2,11 +2,12 @@
cat > $1 <<+++
#!/bin/sh
XLISPLIB=$2 export XLISPLIB
+XLISPLIBEXEC=$3 export XLISPLIBEXEC
if test -f xlisp.wks; then WKS="xlisp.wks";
-else WKS="\${XLISPLIB}/xlisp.wks";
+else WKS="\${XLISPLIBEXEC}/xlisp.wks";
fi
if test -f xlisp; then XLISP=xlisp;
-else XLISP="\${XLISPLIB}/xlisp"
+else XLISP="\${XLISPLIBEXEC}/xlisp"
fi
exec \${XLISP} -w\${WKS} \$*
+++
|