]> git.lyx.org Git - lyx.git/blob - config/gettext.m4.patch
more latex conversion cases fixed, patch from Andre, more more funcs to lowercase...
[lyx.git] / config / gettext.m4.patch
1 --- /usr/share/aclocal/gettext.m4       Thu Sep 23 05:05:24 1999
2 +++ gettext.m4  Sat Jan  8 04:12:49 2000
3 @@ -227,7 +227,12 @@
4       else
5         AC_MSG_CHECKING(for catalogs to be installed)
6         NEW_LINGUAS=
7 -       for lang in ${LINGUAS=$ALL_LINGUAS}; do
8 +dnl ============== Fix is here! ======================
9 +dnl Some sh do not like substitution in bounds of for loops
10 +dnl    for lang in ${LINGUAS=$ALL_LINGUAS}; do
11 +    tmplinguas=${LINGUAS=$ALL_LINGUAS}
12 +    for lang in ${tmplinguas}; do
13 +dnl ==== end of fix
14           case "$ALL_LINGUAS" in
15            *$lang*) NEW_LINGUAS="$NEW_LINGUAS $lang" ;;
16           esac