mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-03-13 16:30:32 -07:00
Ensure that the CLX directory exists before creating module.lsp
This commit is contained in:
parent
314e849c6a
commit
cd8ad462ae
1 changed files with 5 additions and 3 deletions
|
|
@ -230,9 +230,11 @@
|
|||
"build:clx;module.lisp"))
|
||||
#+:msvc
|
||||
(c::*cc-flags* (concatenate 'string c::*cc-flags* " -Zm150")))
|
||||
(with-open-file (s "build:clx;module.lisp" :direction :output :if-exists :overwrite
|
||||
:if-does-not-exist :create)
|
||||
(print '(provide :clx) s))
|
||||
(let ((filename "build:clx;module.lisp"))
|
||||
(ensure-directories-exist filename)
|
||||
(with-open-file (s filename :direction :output :if-exists :overwrite
|
||||
:if-does-not-exist :create)
|
||||
(print '(provide :clx) s)))
|
||||
(unless (find-package "SB-BSD-SOCKETS")
|
||||
(load "ext:sockets;package.lisp"))
|
||||
(mapcar #'load +clx-src-files+)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue