build-system/gnu: Adjust 'dist-package' to current 'autoconf-wrapper' API.

This is a followup to 464f544739.

* guix/build-system/gnu.scm (dist-package): Do not call 'autoconf-wrapper'.
This commit is contained in:
Ludovic Courtès 2020-06-17 15:17:00 +02:00
parent 9c8893ce20
commit 8cca3f939a
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -253,7 +253,7 @@ (define* (dist-package p source #:key (phases '%dist-phases))
(let ((ref (lambda (module var)
(module-ref (resolve-interface module) var))))
`(,@(package-native-inputs p)
("autoconf" ,((ref '(gnu packages autotools) 'autoconf-wrapper)))
("autoconf" ,(ref '(gnu packages autotools) 'autoconf-wrapper))
("automake" ,(ref '(gnu packages autotools) 'automake))
("libtool" ,(ref '(gnu packages autotools) 'libtool))
("gettext" ,(ref '(gnu packages gettext) 'gnu-gettext))