guix package: --search-paths mentions $PATH.

* guix/scripts/package.scm (search-path-environment-variables): Add $PATH to
  SEARCH-PATHS.
This commit is contained in:
Ludovic Courtès 2015-05-20 11:12:34 +02:00
parent 10f366e38a
commit 755e1147aa
1 changed files with 3 additions and 1 deletions

View File

@ -381,7 +381,9 @@ an output path different than CURRENT-PATH."
ENTRIES, a list of manifest entries, in PROFILE. Use GETENV to determine the ENTRIES, a list of manifest entries, in PROFILE. Use GETENV to determine the
current settings and report only settings not already effective." current settings and report only settings not already effective."
(let ((search-paths (delete-duplicates (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 (filter-map (match-lambda
((spec . value) ((spec . value)
(let ((variable (search-path-specification-variable spec)) (let ((variable (search-path-specification-variable spec))