Skip to content
Snippets Groups Projects
Commit 681c858b authored by dtc's avatar dtc
Browse files

Fix for defsystem's OPERATE-ON-SYSTEM which didn't work with Allegro

CL 5.0 on Linux/x86 as there is no CURRENT-DIRECTORY function in
"MAKE" package, including packages it uses. From Hannu Koivisto.
parent 3733e8d4
No related branches found
No related tags found
No related merge requests found
...@@ -1049,7 +1049,7 @@ ...@@ -1049,7 +1049,7 @@
`(;; Current directory `(;; Current directory
"./" "./"
#+:lucid (working-directory) #+:lucid (working-directory)
#+(or :allegro ACLPC) (current-directory) #+(or :allegro ACLPC) (excl:current-directory)
#+:cmu (ext:default-directory) #+:cmu (ext:default-directory)
#+:lispworks #+:lispworks
,(multiple-value-bind (major minor) (system::lispworks-version) ,(multiple-value-bind (major minor) (system::lispworks-version)
......
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