Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions quicklisp/impl-util.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -247,9 +247,20 @@ quicklisp at CL startup."
(directory (merge-pathnames *wild-entry* directory)
#+scl :truenamep #+scl nil))
(:implementation lispworks
(directory (merge-pathnames *wild-entry* directory)
;; if the directory is a symlink and link transparency is false
;; then it will have filename components which should be the last
;; element of the directory component. If that's the case then
;; append them to the directory where they belong.
(let ((filename (file-namestring directory)))
(directory (merge-pathnames *wild-entry*
(if (not filename)
directory
(make-pathname
:directory (append (pathname-directory directory)
(list filename))
:defaults directory)))
#+lispworks :directories #+lispworks t
#+lispworks :link-transparency #+lispworks nil))
#+lispworks :link-transparency #+lispworks nil)))
(:implementation ecl
(nconc
(directory (merge-pathnames *wild-entry* directory)
Expand Down