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
6 changes: 5 additions & 1 deletion quicklisp/dist.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,11 @@ the given NAME."
(ensure-system-cdb-file dist))))
(when line
(setf (gethash system-name index)
(make-system-from-line line dist)))))))
(make-system-from-line line dist))))
(let ((slash-index (position #\/ system-name)))
(when (and slash-index
(plusp slash-index))
(find-system-in-dist (subseq system-name 0 slash-index) dist))))))

(defmethod preference ((system system))
(if (probe-file (preference-file system))
Expand Down