If xgettext fails, make Sanitize fail
authorTom Tromey <tromey@redhat.com>
Thu, 23 Apr 1998 05:17:30 +0000 (05:17 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 23 Apr 1998 05:17:30 +0000 (05:17 +0000)
bfd/.Sanitize
binutils/.Sanitize
gas/.Sanitize
gprof/.Sanitize
ld/.Sanitize

index cc041872a4a6e59ff1648b47618051664ec02f7f..a4f153619a018704188181758d5818ed6887ee80 100644 (file)
@@ -635,6 +635,7 @@ if [ -n "${safe}" -a ! -f po/.Recover/bfd.pot ]; then
    fi
    mv po/bfd.pot po/.Recover
 fi
-xgettext `cat po/POTFILES.in` -o po/bfd.pot
+# If this fails, Sanitization must fail.
+xgettext `cat po/POTFILES.in` -o po/bfd.pot || exit 1
 
 # eof
index eac10d5fcec3b168febcb267b411b0fbd88f510c..244f8b444104c4044aaa5d4e141e9a5ff6da9e13 100644 (file)
@@ -142,7 +142,7 @@ if [ -n "${safe}" -a ! -f po/.Recover/binutils.pot ]; then
    fi
    mv po/binutils.pot po/.Recover
 fi
-xgettext `cat po/POTFILES.in` -o po/binutils.pot
-
+# If this fails, Sanitization must fail.
+xgettext `cat po/POTFILES.in` -o po/binutils.pot || exit 1
 
 # eof
index 4760fad180556a9f3191bb6c2da0f5b2d5d29d6d..c7c9f31c2adb15671085255c5ad616dc28370fdc 100644 (file)
@@ -461,6 +461,7 @@ if [ -n "${safe}" -a ! -f po/.Recover/gas.pot ]; then
    fi
    mv po/gas.pot po/.Recover
 fi
-xgettext `cat po/POTFILES.in` -o po/gas.pot
+# If this fails, Sanitization must fail.
+xgettext `cat po/POTFILES.in` -o po/gas.pot || exit 1
 
 # eof
index 8dd15e503ddea5275f2723b766d09b9868778c2c..ac1ec54091a0b9e3d8b209278ec9a80ef3cb2062 100644 (file)
@@ -117,7 +117,8 @@ if [ -n "${safe}" -a ! -f po/.Recover/gprof.pot ]; then
    fi
    mv po/gprof.pot po/.Recover
 fi
-xgettext `cat po/POTFILES.in` -o po/gprof.pot
+# If this fails, Sanitization must fail.
+xgettext `cat po/POTFILES.in` -o po/gprof.pot || exit 1
 
 
 # eof
index b3deef464c823064439388b5a8207ee908631ecc..91b8d3c1cf98952c316a80ac77660acfe1339be1 100644 (file)
@@ -319,6 +319,6 @@ if [ -n "${safe}" -a ! -f po/.Recover/ld.pot ]; then
    fi
    mv po/ld.pot po/.Recover
 fi
-xgettext `cat po/POTFILES.in` -o po/ld.pot
-
+# If this fails, Sanitization must fail.
+xgettext `cat po/POTFILES.in` -o po/ld.pot || exit 1
 # eof