diff options
-rw-r--r-- | guix/build-system/gnu.scm | 2 |
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)) |