aboutsummaryrefslogtreecommitdiff
path: root/guix/build-system/gnu.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-06-17 15:17:00 +0200
committerLudovic Courtès <ludo@gnu.org>2020-06-17 19:32:43 +0200
commit8cca3f939aab53c86a7657088b4b215575a5b280 (patch)
tree534c29dae575632d329858b584fc3e2deea730cc /guix/build-system/gnu.scm
parent9c8893ce2091765b047d79c5edea3f1063df1796 (diff)
downloadguix-8cca3f939aab53c86a7657088b4b215575a5b280.tar
guix-8cca3f939aab53c86a7657088b4b215575a5b280.tar.gz
build-system/gnu: Adjust 'dist-package' to current 'autoconf-wrapper' API.
This is a followup to 464f5447396fcec9b43f7eab71d5d42b522a157f. * guix/build-system/gnu.scm (dist-package): Do not call 'autoconf-wrapper'.
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 f59567febb..1085c62d7f 100644
--- a/guix/build-system/gnu.scm
+++ b/guix/build-system/gnu.scm
@@ -253,7 +253,7 @@ exact build phases are defined by 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))