Merge pull request #551 from v01dXYZ/master

Fix include-shared for process
This commit is contained in:
Alex Shinn 2019-07-24 22:54:30 +08:00 committed by GitHub
commit a8680bb0b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,5 +19,5 @@
process->output+error process->output+error+status)
(import (chibi) (chibi io) (chibi string) (chibi filesystem))
(cond-expand (threads (import (srfi 18) (srfi 151))) (else #f))
(cond-expand (windows) (else (include-shared "process")))
(cond-expand ((not windows) (include-shared "process")))
(include "process.scm"))