mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 02:08:49 -04:00
20 lines
500 B
Plaintext
20 lines
500 B
Plaintext
$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} \$*
|
|
+++
|