diff options
author | Steve Chamberlain <sac@cygnus> | 1991-11-14 03:58:08 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1991-11-14 03:58:08 +0000 |
commit | b98412e37243d833e18eac16a6e19c64b4a18070 (patch) | |
tree | 3db797067b7e4dd7b90e1e7bc28af6ce75542b75 /gdb/doc/Makefile.in | |
parent | 29e103320f276e14f0f90024104d67513f6a2575 (diff) | |
download | gdb-b98412e37243d833e18eac16a6e19c64b4a18070.zip gdb-b98412e37243d833e18eac16a6e19c64b4a18070.tar.gz gdb-b98412e37243d833e18eac16a6e19c64b4a18070.tar.bz2 |
Uses <foo>.n as a temp file rather than <foo>.new so it doesn't go
over sysV's limit.
Diffstat (limited to 'gdb/doc/Makefile.in')
-rw-r--r-- | gdb/doc/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/doc/Makefile.in b/gdb/doc/Makefile.in index 4664bc7..755109c 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 |