From: Niels Möller Date: Sat, 30 May 2009 20:33:34 +0000 (+0200) Subject: (.texinfo.info): Don't use a temporary output file X-Git-Tag: nettle_2.0_release_20090608~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05afa11de7bd2d27436b3b9ae8ee9be6e07fffa5;p=thirdparty%2Fnettle.git (.texinfo.info): Don't use a temporary output file $@T, trust makeinfo to not remove output file on errors. Rev: nettle/Makefile.in:1.9 --- diff --git a/Makefile.in b/Makefile.in index aca4fda0..59478e9b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -199,8 +199,7 @@ des.$(OBJEXT): des.c des.h $(des_headers) # Texinfo rules .texinfo.info: - cd $(srcdir) && $(MAKEINFO) --output $@T `basename "$<"` \ - && test -s $@T && mv -f $@T $@ + cd $(srcdir) && $(MAKEINFO) --output $@ `basename "$<"` .texinfo.html: cd $(srcdir) && $(MAKEINFO) --html --no-split \