rebuild
[deliverable/binutils-gdb.git] / ld / .Sanitize
index 322888c914560a3449fafad46ca47b737e5aa2db..12e3bfb15ba050002bb41b4c1e26d037a0fca2a5 100644 (file)
@@ -293,10 +293,60 @@ else
        done
 fi
 
+beos_files="ChangeLog Makefile.am Makefile.in configure.tgt"
+if ( echo $* | grep keep\-beos > /dev/null ) ; then
+       for i in $beos_files ; do
+               if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Keeping beos stuff in $i
+                       fi
+               fi
+       done
+else
+       for i in $beos_files ; do
+               if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Removing traces of \"beos\" from $i...
+                       fi
+                       cp $i new
+                       sed '/start\-sanitize\-beos/,/end-\sanitize\-beos/d' < $i > new
+                       if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
+                               if [ -n "${verbose}" ] ; then
+                                       echo Caching $i in .Recover...
+                               fi
+                               mv $i .Recover
+                       fi
+                       mv new $i
+               fi
+       done
+fi
+
 for i in * ; do
        if test ! -d $i && (grep sanitize $i > /dev/null) ; then
                echo '***' Some mentions of Sanitize are still left in $i! 1>&2
        fi
 done
 
+# 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/ld.pot ]; then
+   if [ -n "${verbose}" ]; then
+      echo Caching po/ld.pot in .Recover...
+   fi
+   mv po/ld.pot po/.Recover
+fi
+# If this fails, Sanitization must fail.
+xgettext -c -C -k_ -kN_ -f po/POTFILES.in -o po/ld.pot || exit 1
 # eof
This page took 0.023644 seconds and 4 git commands to generate.