diff options
author | Bruno Haible <bruno@clisp.org> | 2003-12-03 20:31:57 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:11:27 +0200 |
commit | d51ead66f4fee32495303a2c540bbb7329d19d9b (patch) | |
tree | 170ca579edc7566fb4e09aa9e7e34bad655ccaaa | |
parent | f05102dd83ec9d941827719f4be1c7a9810f5d5d (diff) | |
download | external_gettext-d51ead66f4fee32495303a2c540bbb7329d19d9b.zip external_gettext-d51ead66f4fee32495303a2c540bbb7329d19d9b.tar.gz external_gettext-d51ead66f4fee32495303a2c540bbb7329d19d9b.tar.bz2 |
Avoid interpreting the backslashes in here documents.
-rwxr-xr-x | gettext-tools/tests/xgettext-glade-2 | 2 | ||||
-rwxr-xr-x | gettext-tools/tests/xgettext-glade-3 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gettext-tools/tests/xgettext-glade-2 b/gettext-tools/tests/xgettext-glade-2 index 16bf237..c40ead8 100755 --- a/gettext-tools/tests/xgettext-glade-2 +++ b/gettext-tools/tests/xgettext-glade-2 @@ -63,7 +63,7 @@ test $? = 0 || { rm -fr $tmpfiles; exit 1; } grep -v 'POT-Creation-Date' < xg-gl-2.tmp > xg-gl-2.pot tmpfiles="$tmpfiles xg-gl-2.ok" -cat <<EOF > xg-gl-2.ok +cat <<\EOF > xg-gl-2.ok # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. diff --git a/gettext-tools/tests/xgettext-glade-3 b/gettext-tools/tests/xgettext-glade-3 index a231cc3..5539f35 100755 --- a/gettext-tools/tests/xgettext-glade-3 +++ b/gettext-tools/tests/xgettext-glade-3 @@ -170,7 +170,7 @@ test $? = 0 || { rm -fr $tmpfiles; exit 1; } grep -v 'POT-Creation-Date' < xg-gl-3.tmp > xg-gl-3.pot tmpfiles="$tmpfiles xg-gl-3.ok" -cat <<EOF > xg-gl-3.ok +cat <<\EOF > xg-gl-3.ok # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. |