Simplify outputted unix scripts
This commit is contained in:
parent
a94e179efb
commit
b6325699a4
|
|
@ -169,7 +169,8 @@
|
||||||
(cond
|
(cond
|
||||||
((symbol=? compilation-target 'windows) "%0%")
|
((symbol=? compilation-target 'windows) "%0%")
|
||||||
((symbol=? compilation-target 'php) "$binname")
|
((symbol=? compilation-target 'php) "$binname")
|
||||||
(else "$(cd -- \"$(dirname \"$0\")\" >/dev/null 2>&1 && pwd -P)/\"$0\""))
|
(else "\"$0\""))
|
||||||
|
;(else "$(cd -- \"$(dirname \"$0\")\" >/dev/null 2>&1 && pwd -P)/\"$0\""))
|
||||||
(cond
|
(cond
|
||||||
((symbol=? compilation-target 'windows) "")
|
((symbol=? compilation-target 'windows) "")
|
||||||
((symbol=? compilation-target 'php) "")
|
((symbol=? compilation-target 'php) "")
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,10 @@
|
||||||
(import (scheme base)
|
(import (scheme base)
|
||||||
(scheme read)
|
(scheme read)
|
||||||
(scheme write))
|
(scheme write)
|
||||||
|
(retropikzel cgi))
|
||||||
|
|
||||||
(display "Test successfull")
|
(display "Test successfull")
|
||||||
(newline)
|
(newline)
|
||||||
|
|
||||||
|
(display (cgi))
|
||||||
|
(newline)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue