diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-05-06 18:15:00 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-05-06 18:15:00 +0000 |
commit | c2400a02de20cd3dfb9d4c3367622bc11a41d780 (patch) | |
tree | 227e9d2bdd1174f6ad4613242b3b6e830eb8c827 /opcodes | |
parent | f7934c1ac6f5afb32f628934cf1803abe064814c (diff) | |
download | gdb-c2400a02de20cd3dfb9d4c3367622bc11a41d780.zip gdb-c2400a02de20cd3dfb9d4c3367622bc11a41d780.tar.gz gdb-c2400a02de20cd3dfb9d4c3367622bc11a41d780.tar.bz2 |
fix gettext sanitization
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/.Sanitize | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/.Sanitize b/opcodes/.Sanitize index 4370886..e970f0e 100644 --- a/opcodes/.Sanitize +++ b/opcodes/.Sanitize @@ -493,7 +493,7 @@ if [ -n "${safe}" -a ! -f po/.Recover/POTFILES.in ]; then mv po/POTFILES.in po/.Recover fi -'\ls -1 *.[ch] *.in' | sed -e 's,^\./,,' > po/POTFILES.in +ls -1 *.[ch] cg*.in 2>/dev/null | sed -e 's,^\./,,' > po/POTFILES.in if [ -n "${safe}" -a ! -f po/.Recover/opcodes.pot ]; then if [ -n "${verbose}" ]; then @@ -503,6 +503,6 @@ if [ -n "${safe}" -a ! -f po/.Recover/opcodes.pot ]; then fi # If this fails, Sanitization must fail. -xgettext -k_ -kN_ -C `cat po/POTFILES.in` -o po/opcodes.pot || exit 1 +xgettext -c -k_ -kN_ -f po/POTFILES.in -o po/opcodes.pot || exit 1 # End of file. |