aboutsummaryrefslogtreecommitdiff
path: root/guix/build-system/gnu.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-10-14 14:50:19 +0200
committerLudovic Courtès <ludo@gnu.org>2015-10-14 21:39:05 +0200
commit87cd0dba2fd221ada9f12ea1cb3d3d151834f498 (patch)
tree378848aaad87197f7d8f3b7d38cd05e198111ae7 /guix/build-system/gnu.scm
parenta6785b96ff8e7bf1ddffdda146955c1e5d416e35 (diff)
downloadguix-87cd0dba2fd221ada9f12ea1cb3d3d151834f498.tar
guix-87cd0dba2fd221ada9f12ea1cb3d3d151834f498.tar.gz
build-system/gnu: dist-package: Use 'autoconf-wrapper'.
* guix/build-system/gnu.scm (dist-package): Use AUTOCONF-WRAPPER instead of AUTOCONF.
Diffstat (limited to 'guix/build-system/gnu.scm')
-rw-r--r--guix/build-system/gnu.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm
index 3be83468eb..c83c50b76e 100644
--- a/guix/build-system/gnu.scm
+++ b/guix/build-system/gnu.scm
@@ -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))