summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-07-19 19:11:09 +0000
committerRichard M. Stallman <rms@gnu.org>1993-07-19 19:11:09 +0000
commit103d21491faf144d9b07a079a49a169890f48b98 (patch)
tree6d72a11caf169229d9b6f53617e366c74f160a6e /lib-src
parent97344751daece6ed6456ec1dec921f75c42758ac (diff)
downloademacs-103d21491faf144d9b07a079a49a169890f48b98.tar.gz
(install): Use .n, not .new, for temporary filenames.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/Makefile.in15
1 files changed, 8 insertions, 7 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index 91c041b73e0..769b239ca1b 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -142,25 +142,26 @@ ${archlibdir}: all
# 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: