Uses <foo>.n as a temp file rather than <foo>.new so it doesn't go

over sysV's limit.
This commit is contained in:
Steve Chamberlain 1991-11-14 03:58:08 +00:00
parent 29e103320f
commit b98412e372
1 changed files with 2 additions and 2 deletions

View File

@ -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