]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
remove and abort on error
authorMark Andrews <marka@isc.org>
Tue, 6 Feb 2007 23:45:27 +0000 (23:45 +0000)
committerMark Andrews <marka@isc.org>
Tue, 6 Feb 2007 23:45:27 +0000 (23:45 +0000)
doc/arm/Makefile.in

index f5dcb040e8b49c5127987482382bc7da2f356b09..d510231402be764146eb951d0deee4f56205c841 100644 (file)
@@ -13,7 +13,7 @@
 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 # PERFORMANCE OF THIS SOFTWARE.
 
-# $Id: Makefile.in,v 1.8.2.5 2005/05/13 01:21:57 marka Exp $
+# $Id: Makefile.in,v 1.8.2.6 2007/02/06 23:45:27 marka Exp $
 
 srcdir =       @srcdir@
 VPATH =                @srcdir@
@@ -52,12 +52,12 @@ Bv9ARM.tex: Bv9ARM-book.xml
 
 Bv9ARM.dvi: Bv9ARM.tex
        rm -f Bv9ARM-book.aux Bv9ARM-book.dvi Bv9ARM-book.log
-       ${LATEX} '\batchmode\input Bv9ARM.tex' || rm -f $@
-       ${LATEX} '\batchmode\input Bv9ARM.tex' || rm -f $@
-       ${LATEX} '\batchmode\input Bv9ARM.tex' || rm -f $@
+       ${LATEX} '\batchmode\input Bv9ARM.tex' || (rm -f $@; exit 1)
+       ${LATEX} '\batchmode\input Bv9ARM.tex' || (rm -f $@; exit 1)
+       ${LATEX} '\batchmode\input Bv9ARM.tex' || (rm -f $@; exit 1)
 
 Bv9ARM.pdf: Bv9ARM.tex
        rm -f Bv9ARM-book.aux Bv9ARM-book.pdf Bv9ARM-book.log
-       ${PDFLATEX} '\batchmode\input Bv9ARM.tex' || rm -f $@
-       ${PDFLATEX} '\batchmode\input Bv9ARM.tex' || rm -f $@
-       ${PDFLATEX} '\batchmode\input Bv9ARM.tex' || rm -f $@
+       ${PDFLATEX} '\batchmode\input Bv9ARM.tex' || (rm -f $@; exit 1)
+       ${PDFLATEX} '\batchmode\input Bv9ARM.tex' || (rm -f $@; exit 1)
+       ${PDFLATEX} '\batchmode\input Bv9ARM.tex' || (rm -f $@; exit 1)