aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index 85565fc5f43..a1a79c255cd 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -138,14 +138,14 @@ ${archlibdir}: all
138install: ${archlibdir} 138install: ${archlibdir}
139 @echo 139 @echo
140 @echo "Installing utilities for users to run." 140 @echo "Installing utilities for users to run."
141 for file in ${INSTALLABLES} ; do \ 141 for file in ${INSTALLABLES} ${INSTALLABLE_SCRIPTS}; do \
142 cp $${file} ${bindir}/$${file}.new ; \ 142 cp $${file} ${bindir}/$${file}.new ; \
143 chmod 755 ${bindir}/$${file}.new ; \ 143 chmod 755 ${bindir}/$${file}.new ; \
144 done 144 done
145 @echo 145 @echo
146 @echo "Changing the owner and group of utility programs to \`bin'." 146 @echo "Changing the owner and group of utility programs to \`bin'."
147 @echo "(You may ignore errors here if you don't care about this.)" 147 @echo "(You may ignore errors here if you don't care about this.)"
148 -for file in emacsclient etags ctags b2m ; do \ 148 -for file in ${INSTALLABLES} ${INSTALLABLE_SCRIPTS} ; do \
149 chgrp bin ${bindir}/$${file}.new ; \ 149 chgrp bin ${bindir}/$${file}.new ; \
150 chown bin ${bindir}/$${file}.new ; \ 150 chown bin ${bindir}/$${file}.new ; \
151 rm -f ${bindir}/$${file} ; \ 151 rm -f ${bindir}/$${file} ; \