# HG changeset patch # User Richard M. Stallman # Date 743109069 0 # Node ID 1d00db08fcacd2cd3b02bab80f2f881c64281746 # Parent 8e236d4ce64b1a0c6e0be2e16270407360c58bd2 (install): Use .n, not .new, for temporary filenames. diff -r 8e236d4ce64b -r 1d00db08fcac lib-src/Makefile.in --- a/lib-src/Makefile.in Mon Jul 19 18:57:59 1993 +0000 +++ b/lib-src/Makefile.in Mon Jul 19 19:11:09 1993 +0000 @@ -142,25 +142,26 @@ # We don't need to install `wakeup' explicitly, because it will be copied when # this whole directory is copied. +# We use .n, not .new as before, to avoid exceeding the 14-character limit. install: ${archlibdir} @echo @echo "Installing utilities for users to run." for file in ${INSTALLABLES} ; do \ - cp $${file} ${bindir}/$${file}.new ; \ - chmod 755 ${bindir}/$${file}.new ; \ + cp $${file} ${bindir}/$${file}.n ; \ + chmod 755 ${bindir}/$${file}.n ; \ done for file in ${INSTALLABLE_SCRIPTS} ; do \ - cp ${srcdir}/$${file} ${bindir}/$${file}.new ; \ - chmod 755 ${bindir}/$${file}.new ; \ + cp ${srcdir}/$${file} ${bindir}/$${file}.n ; \ + chmod 755 ${bindir}/$${file}.n ; \ done @echo @echo "Changing the owner and group of utility programs to \`bin'." @echo "(You may ignore errors here if you don't care about this.)" -for file in ${INSTALLABLES} ${INSTALLABLE_SCRIPTS} ; do \ - chgrp bin ${bindir}/$${file}.new ; \ - chown bin ${bindir}/$${file}.new ; \ + chgrp bin ${bindir}/$${file}.n ; \ + chown bin ${bindir}/$${file}.n ; \ rm -f ${bindir}/$${file} ; \ - mv ${bindir}/$${file}.new ${bindir}/$${file} ; \ + mv ${bindir}/$${file}.n ${bindir}/$${file} ; \ done uninstall: