mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-23 04:52:42 -08:00
run-program: on windows argv is a string (no car)
This commit is contained in:
parent
ca08f94430
commit
a26791e9fb
1 changed files with 3 additions and 2 deletions
|
|
@ -102,8 +102,9 @@
|
|||
:direction :output
|
||||
:if-exists if-error-exists)))
|
||||
|
||||
(let ((args (prepare-args (cons command argv))))
|
||||
(si:run-program-internal (car args) args
|
||||
(let ((progname (si:copy-to-simple-base-string command))
|
||||
(args (prepare-args (cons command argv))))
|
||||
(si:run-program-internal progname args
|
||||
input output error
|
||||
wait environ external-format))))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue