]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
Fix condition in Makefile.in's LINGUAS assignment.
authorGrégoire Sutre <gregoire.sutre@gmail.com>
Wed, 14 Jul 2010 14:47:28 +0000 (16:47 +0200)
committerGrégoire Sutre <gregoire.sutre@gmail.com>
Wed, 14 Jul 2010 14:47:28 +0000 (16:47 +0200)
ChangeLog
Makefile.in

index 8511fa2cf7a0c27894f3736f8dd4360a943cd082..99a177f664b2c8f076419b75e6ff686dfb89f6d9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-07-14  Grégoire Sutre  <gregoire.sutre@gmail.com>
+
+       * Makefile.in: Use the substituted @USE_NLS@ instead of ENABLE_NLS.
+
 2010-07-14  Grégoire Sutre  <gregoire.sutre@gmail.com>
 
        * kern/partition.c (grub_partition_check_containment): New function to
index 3dc7e6f1909df29a3f063886e8f8f4f22771ba86..39061be4d48828828399fb89a476da986aa94b34 100644 (file)
@@ -53,7 +53,7 @@ XGETTEXT = @XGETTEXT@
 MSGMERGE = @MSGMERGE@
 MSGFMT = @MSGFMT@
 
-ifdef ENABLE_NLS
+ifeq (@USE_NLS@,yes)
 LINGUAS = $(shell for i in $(srcdir)/po/*.po ; do \
                        if test -e $$i ; then echo $$i ; fi ; \
                done | sed -e "s,.*/po/\(.*\)\.po$$,\1,")