gnu: commencement: Clean up 'gnu-make-final' dependencies.

* gnu/packages/commencement.scm (gnu-make-final): Remove GUILE-FINAL
from the inputs of 'pkg-config'.
This commit is contained in:
Ludovic Courtès 2019-10-14 15:42:42 +02:00
parent 6254823271
commit fd67cdb7e3
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -2375,13 +2375,9 @@ (define with-boot5
(define gnu-make-final
;; The final GNU Make, which uses the final Guile.
;; FIXME: This is a mistake: we shouldn't be propagating GUILE-FINAL to
;; PKG-CONFIG.
;; TODO: Fix that on the next rebuild cycle.
(let ((pkg-config (package
(inherit pkg-config)
(inputs `(("guile" ,guile-final)
,@(%boot5-inputs)))
(inputs (%boot5-inputs))
(arguments
`(#:implicit-inputs? #f
,@(package-arguments pkg-config))))))