diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2009-11-24 22:53:36 +0000 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2009-11-24 22:53:36 +0000 |
commit | 3a0b9cfdd15c0cccd2f094bee11b6a7a1cc5ae02 (patch) | |
tree | 351fda125c35b2ff30791aff0b336d83666f07c3 /Master/texmf | |
parent | aa1420a6770a5148a153b2b1e4283fb91a9a3d3b (diff) |
Don't overwite files if ps2pdf crashes.
git-svn-id: svn://tug.org/texlive/trunk@16154 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf')
-rw-r--r-- | Master/texmf/doc/man/man1/Makefile | 2 | ||||
-rw-r--r-- | Master/texmf/doc/man/man5/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf/doc/man/man1/Makefile b/Master/texmf/doc/man/man1/Makefile index 650049a593d..7acfca599dd 100644 --- a/Master/texmf/doc/man/man1/Makefile +++ b/Master/texmf/doc/man/man1/Makefile @@ -3,7 +3,7 @@ SRC = $(wildcard man1/*.1) PDF = $(patsubst %.1, %.man1.pdf, $(SRC)) -MKPDF = $(GROFF) $(PDFOPTS) $< | $(PSPDF) - $@ +MKPDF = $(GROFF) $(PDFOPTS) $< | $(PSPDF) - $@.tmp && mv $@.tmp $@ || rm $@.tmp all: pdf pdf: $(PDF) diff --git a/Master/texmf/doc/man/man5/Makefile b/Master/texmf/doc/man/man5/Makefile index 057102e5459..c0afb8965a5 100644 --- a/Master/texmf/doc/man/man5/Makefile +++ b/Master/texmf/doc/man/man5/Makefile @@ -3,7 +3,7 @@ SRC = $(wildcard man5/*.5) PDF = $(patsubst %.5, %.man5.pdf, $(SRC)) -MKPDF = $(GROFF) $(PDFOPTS) $< | $(PSPDF) - $@ +MKPDF = $(GROFF) $(PDFOPTS) $< | $(PSPDF) - $@.tmp && mv $@.tmp $@ || rm $@.tmp all: pdf pdf: $(PDF) |