diff options
author | Tom Tromey <tromey@redhat.com> | 1998-04-22 22:40:45 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1998-04-22 22:40:45 +0000 |
commit | 3d96e9b4cf6119424d4e45cad1064b0982c1aa3f (patch) | |
tree | cb440b09eb44c90cf2e47c5613ba10abb0a62e7d /gprof | |
parent | 1158ffaf2a82c3e742e870006b74e0084902175c (diff) | |
download | ppe42-binutils-3d96e9b4cf6119424d4e45cad1064b0982c1aa3f.tar.gz ppe42-binutils-3d96e9b4cf6119424d4e45cad1064b0982c1aa3f.zip |
.Sanitize now re-computes gettext-related files
Diffstat (limited to 'gprof')
-rw-r--r-- | gprof/.Sanitize | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gprof/.Sanitize b/gprof/.Sanitize index 14f72bd5de..8dd15e503d 100644 --- a/gprof/.Sanitize +++ b/gprof/.Sanitize @@ -97,4 +97,27 @@ make_solaris_order_map Do-last: +# This must come after all other sanitizations. Re-sanitize the .pot +# file. +if [ -n "${verbose}" ]; then + echo Re-computing files for gettext ... +fi + +if [ -n "${safe}" -a ! -f po/.Recover/POTFILES.in ]; then + if [ -n "${verbose}" ]; then + echo Caching po/POTFILES.in in .Recover... + fi + mv po/POTFILES.in po/.Recover +fi +find . -name '*.[ch]' | sed -e 's,^\./,,' > po/POTFILES.in + +if [ -n "${safe}" -a ! -f po/.Recover/gprof.pot ]; then + if [ -n "${verbose}" ]; then + echo Caching po/gprof.pot in .Recover... + fi + mv po/gprof.pot po/.Recover +fi +xgettext `cat po/POTFILES.in` -o po/gprof.pot + + # eof |