build-system/gnu: 'dist-package' preserves the package's native inputs.
* guix/build-system/gnu.scm (dist-package)[native-inputs]: Preserve P's native-inputs.
This commit is contained in:
parent
16142b3c14
commit
2d51666bd0
|
@ -204,7 +204,8 @@ runs `make distcheck' and whose result is one or more source tarballs."
|
|||
;; Add autotools & co. as inputs.
|
||||
(let ((ref (lambda (module var)
|
||||
(module-ref (resolve-interface module) var))))
|
||||
`(("autoconf" ,(ref '(gnu packages autotools) 'autoconf))
|
||||
`(,@(package-native-inputs p)
|
||||
("autoconf" ,(ref '(gnu packages autotools) 'autoconf))
|
||||
("automake" ,(ref '(gnu packages autotools) 'automake))
|
||||
("libtool" ,(ref '(gnu packages autotools) 'libtool))
|
||||
("gettext" ,(ref '(gnu packages gettext) 'gnu-gettext))
|
||||
|
|
Loading…
Reference in New Issue