Changeset 15488
- Timestamp:
- 11/30/20 08:22:29 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/asdf.lisp
r15240 r15488 1 1 ;;; -*- mode: Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp ; buffer-read-only: t; -*- 2 ;;; This is ASDF 3.3.4 : Another System Definition Facility.2 ;;; This is ASDF 3.3.4.0.1: Another System Definition Facility. 3 3 ;;; 4 4 ;;; Feedback, bug reports, and patches are all welcome: … … 1698 1698 1699 1699 (with-upgradability () 1700 (defparameter *uiop-version* "3.3.4 ")1700 (defparameter *uiop-version* "3.3.4.0.1") 1701 1701 1702 1702 (defun unparse-version (version-list) … … 2725 2725 even though the OS may not be Unixish, we recommend you use :WANT-RELATIVE T 2726 2726 to throw an error if the pathname is absolute" 2727 #+(or abcl mcl) 2728 (declare (ignore defaults)) 2727 2729 (block nil 2728 2730 (check-type type (or null string (eql :directory))) … … 2749 2751 :directory (unless file-only (cons relative path)) 2750 2752 :name name :type type 2751 :defaults (or #- mcldefaults *nil-pathname*))2753 :defaults (or #-(or abcl mcl) defaults *nil-pathname*)) 2752 2754 (remove-plist-keys '(:type :dot-dot :defaults) keys)))))) 2753 2755 … … 7629 7631 ;; "3.4.5.0.8" would be your eighth local modification of official release 3.4.5 7630 7632 ;; "3.4.5.67.8" would be your eighth local modification of development version 3.4.5.67 7631 (asdf-version "3.3.4 ")7633 (asdf-version "3.3.4.0.1") 7632 7634 (existing-version (asdf-version))) 7633 7635 (setf *asdf-version* asdf-version)
Note: See TracChangeset
for help on using the changeset viewer.