lyx_mirror/config/gettext.m4.patch
Lars Gullik Bjønnes d8bcd73543 the new files
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@409 a592a061-630c-0410-9148-cb99ea01b6c8
2000-01-08 21:06:59 +00:00

17 lines
619 B
Diff

--- /usr/share/aclocal/gettext.m4 Thu Sep 23 05:05:24 1999
+++ gettext.m4 Sat Jan 8 04:12:49 2000
@@ -227,7 +227,12 @@
else
AC_MSG_CHECKING(for catalogs to be installed)
NEW_LINGUAS=
- for lang in ${LINGUAS=$ALL_LINGUAS}; do
+dnl ============== Fix is here! ======================
+dnl Some sh do not like substitution in bounds of for loops
+dnl for lang in ${LINGUAS=$ALL_LINGUAS}; do
+ tmplinguas=${LINGUAS=$ALL_LINGUAS}
+ for lang in ${tmplinguas}; do
+dnl ==== end of fix
case "$ALL_LINGUAS" in
*$lang*) NEW_LINGUAS="$NEW_LINGUAS $lang" ;;
esac