picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

commit b236b96fc551e3b0124c88e4eb3efadb2ddaaac8
parent 813cddb823be9243956a3b25388f2eb0a65783cc
Author: Alexander Burger <abu@software-lab.de>
Date:   Wed,  8 Jun 2011 18:51:30 +0200

Compile pil64 with global installation (if present)
Diffstat:
Msrc64/mkAsm | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src64/mkAsm b/src64/mkAsm @@ -1,7 +1,10 @@ #!/bin/sh -# 16may11abu +# 08jun11abu -if test -x ../bin/picolisp +if test -x /usr/bin/picolisp +then + /usr/bin/pil mkAsm.l "$@" +elif test -x ../bin/picolisp then ../pil mkAsm.l "$@" else