Changeset 13030
- Timestamp:
- 11/19/10 18:21:11 (13 years ago)
- Location:
- trunk/abcl/contrib/asdf-install
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/contrib/asdf-install/port.lisp
r13027 r13030 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) -
trunk/abcl/contrib/asdf-install/variables.lisp
r13027 r13030 115 115 (defvar *temporary-directory* 116 116 (pathname-sans-name+type (user-homedir-pathname))) 117 118 (defvar *gpg-command* "gpg"119 "Location of the gpg binary, if for some reason, it does appear in120 the default path for /bin/sh.")121 122
Note: See TracChangeset
for help on using the changeset viewer.