diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-12-04 21:43:55 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-12-04 21:43:55 +0100 |
commit | f4badde3fab0e2b05574811de712b6dab676cbc4 (patch) | |
tree | 7ef39694a2f8d9783c9acd260a71b8e5804c141c | |
parent | dd1a5a152c679ba2d386dc66127a0de924182e26 (diff) | |
download | patches-f4badde3fab0e2b05574811de712b6dab676cbc4.tar patches-f4badde3fab0e2b05574811de712b6dab676cbc4.tar.gz |
build-system/gnu: Fix reference to Gettext in 'dist-package'.
* guix/build-system/gnu.scm (dist-package): Change 'gettext' to
'gnu-gettext'.
-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 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)))))))) |