diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-07-28 20:04:10 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-07-28 20:07:59 +0200 |
commit | 4e3bfaf406eddc791265281025793182a20ac43f (patch) | |
tree | 91a32fdba0ebb33fa3c1f39021a8afb678e4259b | |
parent | ae46cd0e4cfb1f06d099b2cda1f9e702e86c90e9 (diff) | |
download | guix-4e3bfaf406eddc791265281025793182a20ac43f.tar guix-4e3bfaf406eddc791265281025793182a20ac43f.tar.gz |
guix package: Suggest prefix search path settings.
* guix/scripts/package.scm (build-and-use-profile): Pass #:kind 'prefix
to 'display-search-paths'.
-rw-r--r-- | guix/scripts/package.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/scripts/package.scm b/guix/scripts/package.scm index e2e37098fc..2a751a4552 100644 --- a/guix/scripts/package.scm +++ b/guix/scripts/package.scm @@ -225,7 +225,8 @@ specified in MANIFEST, a manifest object." "~a packages in profile~%" count) count) - (display-search-paths entries (list profile))))))))) + (display-search-paths entries (list profile) + #:kind 'prefix)))))))) ;;; |