Fix condition in Makefile.in's LINGUAS assignment.
This commit is contained in:
parent
8d9a5b15e3
commit
18075f6254
2 changed files with 5 additions and 1 deletions
|
@ -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>
|
2010-07-14 Grégoire Sutre <gregoire.sutre@gmail.com>
|
||||||
|
|
||||||
* kern/partition.c (grub_partition_check_containment): New function to
|
* kern/partition.c (grub_partition_check_containment): New function to
|
||||||
|
|
|
@ -53,7 +53,7 @@ XGETTEXT = @XGETTEXT@
|
||||||
MSGMERGE = @MSGMERGE@
|
MSGMERGE = @MSGMERGE@
|
||||||
MSGFMT = @MSGFMT@
|
MSGFMT = @MSGFMT@
|
||||||
|
|
||||||
ifdef ENABLE_NLS
|
ifeq (@USE_NLS@,yes)
|
||||||
LINGUAS = $(shell for i in $(srcdir)/po/*.po ; do \
|
LINGUAS = $(shell for i in $(srcdir)/po/*.po ; do \
|
||||||
if test -e $$i ; then echo $$i ; fi ; \
|
if test -e $$i ; then echo $$i ; fi ; \
|
||||||
done | sed -e "s,.*/po/\(.*\)\.po$$,\1,")
|
done | sed -e "s,.*/po/\(.*\)\.po$$,\1,")
|
||||||
|
|
Loading…
Reference in a new issue