Changeset 15514
- Timestamp:
- 08/24/21 13:55:43 (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/asdf.lisp
r15506 r15514 1808 1808 1809 1809 (with-upgradability () 1810 (defparameter *uiop-version* "3.3.5 .0.1")1810 (defparameter *uiop-version* "3.3.5") 1811 1811 1812 1812 (defun unparse-version (version-list) … … 2837 2837 even though the OS may not be Unixish, we recommend you use :WANT-RELATIVE T 2838 2838 to throw an error if the pathname is absolute" 2839 #+(or abcl mcl)2840 (declare (ignore defaults))2841 2839 (block nil 2842 2840 (check-type type (or null string (eql :directory))) … … 2863 2861 :directory (unless file-only (cons relative path)) 2864 2862 :name name :type type 2865 :defaults (or #- (or abcl mcl)defaults *nil-pathname*))2863 :defaults (or #-mcl defaults *nil-pathname*)) 2866 2864 (remove-plist-keys '(:type :dot-dot :defaults) keys)))))) 2867 2865 … … 7811 7809 ;; "3.4.5.0.8" would be your eighth local modification of official release 3.4.5 7812 7810 ;; "3.4.5.67.8" would be your eighth local modification of development version 3.4.5.67 7813 (asdf-version "3.3.5 .0.1")7811 (asdf-version "3.3.5") 7814 7812 (existing-version (asdf-version))) 7815 7813 (setf *asdf-version* asdf-version)
Note: See TracChangeset
for help on using the changeset viewer.