1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00
freebsd-ports/math/xlispstat/files/patch-ak
Chris Piazza f5313283a8 Update to 3.52.18
PR:		18439
Submitted by:	KATO Tsuguru <tkato@prontomail.ne.jp>
2000-05-19 08:21:24 +00:00

18 lines
461 B
Plaintext

--- setup.shell.orig Wed Sep 7 23:34:36 1994
+++ setup.shell Wed May 3 09:00:00 2000
@@ -2,11 +2,12 @@
cat > $1 <<+++
#!/bin/sh
XLISPLIB=$2 export XLISPLIB
+XLSLIBEXEC=$3 export XLSLIBEXEC
if test -f xlisp.wks; then WKS="xlisp.wks";
-else WKS="\${XLISPLIB}/xlisp.wks";
+else WKS="\${XLSLIBEXEC}/xlisp.wks";
fi
if test -f xlisp; then XLISP=xlisp;
-else XLISP="\${XLISPLIB}/xlisp"
+else XLISP="\${XLSLIBEXEC}/xlisp"
fi
exec \${XLISP} -w\${WKS} \$*
+++