Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asdf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
19
Issues
19
List
Boards
Labels
Service Desk
Milestones
Merge Requests
12
Merge Requests
12
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
asdf
asdf
Commits
64196c30
Commit
64196c30
authored
Nov 20, 2016
by
Francois-Rene Rideau
Committed by
Elias Pipping
Nov 22, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix run-program on SBCL Win32
This requires a patch to sb-impl::prepare-args relative to sbcl 1.3.10.
parent
945c48d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
uiop/run-program.lisp
uiop/run-program.lisp
+3
-4
No files found.
uiop/run-program.lisp
View file @
64196c30
...
...
@@ -362,12 +362,11 @@ for the implementation's underlying run-program function"
;; r15398 or later in 1.9 or later,
;; so that bug 858 is fixed http://trac.clozure.com/ccl/ticket/858
#+
clozure
(
cons
"cmd"
(
strcat
"/c "
command
))
#+
mkcl
(
list
"cmd"
"/c"
command
)
#+
sbcl
(
list
(
%cmd-shell-pathname
)
"/c"
command
)
#+
sbcl
(
cons
(
%cmd-shell-pathname
)
(
strcat
"/c "
command
))
;; NB: On other Windows implementations, this is utterly bogus
;; except in the most trivial cases where no quoting is needed.
;; Use at your own risk.
#-
(
or
allegro
clisp
clozure
mkcl
sbcl
)
(
list
"cmd"
"/c"
command
))
#-
(
or
allegro
clisp
clozure
sbcl
)
(
list
"cmd"
"/c"
command
))
#+
os-windows
(
list
#+
allegro
(
escape-windows-command
command
)
...
...
@@ -974,7 +973,7 @@ or :error-output."
((
os-unix-p
)
(
cons
"exec"
command
))
((
os-windows-p
)
#+
(
or
allegro
clisp
ecl
sbcl
)
(
cons
(
%cmd-shell-pathname
)
(
cons
"/c"
command
)
)
(
list*
(
%cmd-shell-pathname
)
"/c"
command
)
#-
(
or
allegro
clisp
ecl
sbcl
)
command
)
(
t
command
))))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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