From 05afa11de7bd2d27436b3b9ae8ee9be6e07fffa5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niels=20M=C3=B6ller?= Date: Sat, 30 May 2009 22:33:34 +0200 Subject: [PATCH] (.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 --- Makefile.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 \ -- 2.47.3