~ruther/guix-local

755e1147aa33d1c305bb9db6c5e03cf1063079fc — Ludovic Courtès 11 years ago 10f366e
guix package: --search-paths mentions $PATH.

* guix/scripts/package.scm (search-path-environment-variables): Add $PATH to
  SEARCH-PATHS.
1 files changed, 3 insertions(+), 1 deletions(-)

M guix/scripts/package.scm
M guix/scripts/package.scm => guix/scripts/package.scm +3 -1
@@ 381,7 381,9 @@ an output path different than CURRENT-PATH."
ENTRIES, a list of manifest entries, in PROFILE.  Use GETENV to determine the
current settings and report only settings not already effective."
  (let ((search-paths (delete-duplicates
                       (append-map manifest-entry-search-paths entries))))
                       (cons $PATH
                             (append-map manifest-entry-search-paths
                                         entries)))))
    (filter-map (match-lambda
                  ((spec . value)
                   (let ((variable (search-path-specification-variable spec))