mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
describe: 'package-path-entries' no longer includes the "guix" entry.
Fixes <https://bugs.gnu.org/34833>
Reported by mikadoZero <mikadozero@yandex.com>.
By returning the "guix" entry, we were then adding it to
%PACKAGE-MODULE-PATH, causing the discovery code to scan the whole tree,
including gnu/installer modules, which would in turn lead to warnings.
Regression introduced in bfc9c33930
.
* guix/describe.scm (package-path-entries): Use
'current-channel-entries', not 'current-profile-entries'.
This commit is contained in:
parent
c9c51ac39a
commit
3f4f2ee404
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ (define (package-path-entries)
|
|||
(string-append (manifest-entry-item entry)
|
||||
"/lib/guile/" (effective-version)
|
||||
"/site-ccache")))
|
||||
(current-profile-entries))))
|
||||
(current-channel-entries))))
|
||||
|
||||
(define (package-provenance package)
|
||||
"Return the provenance of PACKAGE as an sexp for use as the 'provenance'
|
||||
|
|
Loading…
Reference in a new issue