Changeset 13030


Ignore:
Timestamp:
11/19/10 18:21:11 (13 years ago)
Author:
Mark Evenson
Message:

Fix compiler warning about *gpg-program* being assumed special.

Location:
trunk/abcl/contrib/asdf-install
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/contrib/asdf-install/port.lisp

    r13027 r13030  
    11(in-package #:asdf-install)
    22
    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'.
    56(defparameter *shell-path* "/bin/sh"
    67  "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*)
    715
    816(eval-when (:load-toplevel :compile-toplevel :execute)
  • trunk/abcl/contrib/asdf-install/variables.lisp

    r13027 r13030  
    115115(defvar *temporary-directory*
    116116  (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 in
    120   the default path for /bin/sh.")
    121 
    122 
Note: See TracChangeset for help on using the changeset viewer.