Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
asdf
asdf
Commits
75c5bd04
Commit
75c5bd04
authored
Nov 11, 2016
by
Elias Pipping
Browse files
Make %normalize-system-command work for ECL
parent
11f15eb7
Changes
1
Hide whitespace changes
Inline
Side-by-side
uiop/run-program.lisp
View file @
75c5bd04
...
...
@@ -965,17 +965,17 @@ or :error-output."
(
string
(
os-cond
((
os-windows-p
)
#+
(
or
allegro
clisp
)
#+
(
or
allegro
clisp
ecl
)
(
strcat
(
%cmd-shell-pathname
)
" /c "
command
)
#-
(
or
allegro
clisp
)
command
)
#-
(
or
allegro
clisp
ecl
)
command
)
(
t
command
)))
(
list
(
escape-shell-command
(
os-cond
((
os-unix-p
)
(
cons
"exec"
command
))
((
os-windows-p
)
#+
(
or
allegro
clisp
sbcl
)
#+
(
or
allegro
clisp
ecl
sbcl
)
(
cons
(
%cmd-shell-pathname
)
(
cons
"/c"
command
))
#-
(
or
allegro
clisp
sbcl
)
command
)
#-
(
or
allegro
clisp
ecl
sbcl
)
command
)
(
t
command
))))))
(
defun
%redirected-system-command
(
command
in
out
err
directory
)
;; helper for %USE-SYSTEM
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment