3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

build-system/gnu: dist-package: Use 'autoconf-wrapper'.

* guix/build-system/gnu.scm (dist-package): Use AUTOCONF-WRAPPER instead
  of AUTOCONF.
This commit is contained in:
Ludovic Courtès 2015-10-14 14:50:19 +02:00
parent a6785b96ff
commit 87cd0dba2f

View file

@ -204,7 +204,7 @@ runs `make distcheck' and whose result is one or more source tarballs."
(let ((ref (lambda (module var)
(module-ref (resolve-interface module) var))))
`(,@(package-native-inputs p)
("autoconf" ,(ref '(gnu packages autotools) 'autoconf))
("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))