build-system/gnu: Fix reference to Gettext in 'dist-package'.

* guix/build-system/gnu.scm (dist-package): Change 'gettext' to
  'gnu-gettext'.
This commit is contained in:
Ludovic Courtès 2013-12-04 21:43:55 +01:00
parent dd1a5a152c
commit f4badde3fa

View file

@ -187,7 +187,7 @@ (define* (dist-package p source)
`(("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))))))))