diff options
Diffstat (limited to 'gettext-tools/tests/format-c-3')
-rwxr-xr-x | gettext-tools/tests/format-c-3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gettext-tools/tests/format-c-3 b/gettext-tools/tests/format-c-3 index e42cbdb..3511f6b 100755 --- a/gettext-tools/tests/format-c-3 +++ b/gettext-tools/tests/format-c-3 @@ -9,7 +9,7 @@ tmpfiles="$tmpfiles fc3.tmp fc3.pot" : ${XGETTEXT=xgettext} ${XGETTEXT} -o fc3.tmp --omit-header --no-location ${top_srcdir}/tests/format-c-3-prg.c test $? = 0 || { rm -fr $tmpfiles; exit 1; } -tr -d '\r' < fc3.tmp > fc3.pot +LC_ALL=C tr -d '\r' < fc3.tmp > fc3.pot test $? = 0 || { rm -fr $tmpfiles; exit 1; } tmpfiles="$tmpfiles fc3.ok" @@ -40,7 +40,7 @@ tmpfiles="$tmpfiles de.po.tmp de.po.un" : ${MSGUNFMT=msgunfmt} ${MSGUNFMT} -o de.po.tmp de/LC_MESSAGES/fc3.mo test $? = 0 || { rm -fr $tmpfiles; exit 1; } -tr -d '\r' < de.po.tmp > de.po.un +LC_ALL=C tr -d '\r' < de.po.tmp > de.po.un test $? = 0 || { rm -fr $tmpfiles; exit 1; } : ${DIFF=diff} |