From: Steve Chamberlain Date: Thu, 14 Nov 1991 03:58:08 +0000 (+0000) Subject: Uses .n as a temp file rather than .new so it doesn't go X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b98412e37243d833e18eac16a6e19c64b4a18070;p=binutils-gdb.git Uses .n as a temp file rather than .new so it doesn't go over sysV's limit. --- diff --git a/gdb/doc/Makefile.in b/gdb/doc/Makefile.in index 4664bc7cfaa..755109caddd 100644 --- a/gdb/doc/Makefile.in +++ b/gdb/doc/Makefile.in @@ -52,8 +52,8 @@ all: gdb.info gdbint.info install: force for i in *.info* ; do \ echo Installing $$i... ; \ - (cp $$i $(idestdir)/info/$$i.new \ - && mv -f $(idestdir)/info/$$i.new $(idestdir)/info/$$i) \ + (cp $$i $(idestdir)/info/$$i.n \ + && mv -f $(idestdir)/info/$$i.n $(idestdir)/info/$$i) \ || exit 1 ; \ done