From b98412e37243d833e18eac16a6e19c64b4a18070 Mon Sep 17 00:00:00 2001 From: Steve Chamberlain Date: Thu, 14 Nov 1991 03:58:08 +0000 Subject: [PATCH] Uses .n as a temp file rather than .new so it doesn't go over sysV's limit. --- gdb/doc/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.30.2