From f4badde3fab0e2b05574811de712b6dab676cbc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 4 Dec 2013 21:43:55 +0100 Subject: [PATCH] build-system/gnu: Fix reference to Gettext in 'dist-package'. * guix/build-system/gnu.scm (dist-package): Change 'gettext' to 'gnu-gettext'. --- guix/build-system/gnu.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm index 333ae9273e..a50ca134f2 100644 --- a/guix/build-system/gnu.scm +++ b/guix/build-system/gnu.scm @@ -187,7 +187,7 @@ runs `make distcheck' and whose result is one or more source tarballs." `(("autoconf" ,(ref '(gnu packages autotools) 'autoconf)) ("automake" ,(ref '(gnu packages autotools) 'automake)) ("libtool" ,(ref '(gnu packages autotools) 'libtool) "bin") - ("gettext" ,(ref '(gnu packages gettext) 'gettext)) + ("gettext" ,(ref '(gnu packages gettext) 'gnu-gettext)) ("texinfo" ,(ref '(gnu packages texinfo) 'texinfo))))))))