Skip to content
Snippets Groups Projects
Commit 0e3ab8bd authored by Raymond Toy's avatar Raymond Toy
Browse files

Make sure the target directory exists before compiling the unix

contrib.
parent 7be5c100
No related branches found
No related tags found
No related merge requests found
......@@ -262,8 +262,10 @@ $TARGET/lisp/lisp -noinit -nositeinit -batch << EOF || exit 3
(compile-file "modules:defsystem/defsystem")
(intl::install)
(ext:without-package-locks
(compile-file #-linux "modules:unix/unix"
#+linux "modules:unix/unix-glibc2"))
(let ((path #-linux "modules:unix/unix"
#+linux "modules:unix/unix-glibc2"))
(ensure-directories-exist (compile-file-pathname path))
(compile-file path)))
EOF
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment