~ubuntu-branches/ubuntu/utopic/gettext/utopic

« back to all changes in this revision

Viewing changes to gettext-tools/tests/lang-guile

  • Committer: Colin Watson
  • Date: 2010-08-01 21:36:08 UTC
  • mfrom: (2.1.10 sid)
  • Revision ID: cjwatson@canonical.com-20100801213608-yy7vkm8lpatep3ci
merge from Debian 0.18.1.1-1

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
: ${XGETTEXT=xgettext}
29
29
${XGETTEXT} -o prog.tmp --omit-header --no-location prog.scm
30
30
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
31
 
tr -d '\r' < prog.tmp > prog.pot
 
31
LC_ALL=C tr -d '\r' < prog.tmp > prog.pot
32
32
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
33
33
 
34
34
tmpfiles="$tmpfiles prog.ok"
77
77
: ${MSGMERGE=msgmerge}
78
78
${MSGMERGE} -q -o fr.po.tmp fr.po prog.pot
79
79
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
80
 
tr -d '\r' < fr.po.tmp > fr.po.new
 
80
LC_ALL=C tr -d '\r' < fr.po.tmp > fr.po.new
81
81
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
82
82
 
83
83
: ${DIFF=diff}