Skip to content
Snippets Groups Projects
Commit 2713bc37 authored by Robert P. Goldman's avatar Robert P. Goldman
Browse files

Use /usr/bin/env only on Unix systems.

parent d0cf205a
No related branches found
No related tags found
No related merge requests found
......@@ -338,7 +338,10 @@ EXTERNAL-FORMAT for the stream passed to the OUTPUT processor."
#+lispworks
(if interactive
(system:call-system-showing-output
#+os-unix
(cons "/usr/bin/env" command) ; lispworks wants a full path.
#-os-unix
command
:show-cmd nil
:wait wait)
(system:run-shell-command
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment