Changeset 13037
- Timestamp:
- 11/20/10 15:38:03 (12 years ago)
- Location:
- branches/0.23.x/abcl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.23.x/abcl/CHANGES
r13035 r13037 13 13 14 14 * [svn r12994] New java-interop macros: CHAIN and JMETHOD-LET 15 16 * [svn r13031] Ensure that the ASDF registry contains the ASDF-INSTALL locations. 15 17 16 18 Fixes -
branches/0.23.x/abcl/contrib/asdf-install/port.lisp
r13035 r13037 1 1 (in-package #:asdf-install) 2 2 3 (defvar *temporary-files*) 4 3 ;;; 'port.lisp' is loaded before 'variables.lisp' primarily for the 4 ;;; definiton of GET-ENV-VAR, but still needs the following specials 5 ;;; which would otherwise be in 'variables.lisp'. 5 6 (defparameter *shell-path* "/bin/sh" 6 7 "The path to a Bourne compatible command shell in physical pathname notation.") 8 9 (defvar *gpg-command* "gpg" 10 "Location of the gpg binary, if for some reason, it does not appear 11 in the default path for /bin/sh.") 12 ;;; End variables 13 14 (defvar *temporary-files*) 7 15 8 16 (eval-when (:load-toplevel :compile-toplevel :execute) -
branches/0.23.x/abcl/contrib/asdf-install/variables.lisp
r13035 r13037 116 116 (pathname-sans-name+type (user-homedir-pathname))) 117 117 118 (defvar *gpg-command* "gpg" 119 "Location of the gpg binary, if for some reason, it does appear in 120 the default path for /bin/sh.")121 122 118 #+abcl 119 (eval-when (:load-toplevel) 120 (require 'asdf) 121 (dolist (location *locations*) 122 (pushnew (second location) asdf:*central-registry*)))
Note: See TracChangeset
for help on using the changeset viewer.