summaryrefslogtreecommitdiff
path: root/lib-src/Makefile.in
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-05-27 02:46:57 +0000
committerJim Blandy <jimb@redhat.com>1993-05-27 02:46:57 +0000
commit5efe00515889d2e393e46699550afe805e25af0e (patch)
tree1799771fd27586266c90d5146378c0114ff18010 /lib-src/Makefile.in
parentc9749a7ff00c15e397a57745c906010301ab13a8 (diff)
downloademacs-5efe00515889d2e393e46699550afe805e25af0e.tar.gz
* Makefile.in (install): Do install the programs listed in
INSTALLABLE_SCRIPTS. Make the renaming loop use INSTALLABLES and INSTALLABLE_SCRIPTS, instead of writing the programs out.
Diffstat (limited to 'lib-src/Makefile.in')
-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
install: ${archlibdir}
@echo
@echo "Installing utilities for users to run."
- for file in ${INSTALLABLES} ; do \
+ for file in ${INSTALLABLES} ${INSTALLABLE_SCRIPTS}; do \
cp $${file} ${bindir}/$${file}.new ; \
chmod 755 ${bindir}/$${file}.new ; \
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 emacsclient etags ctags b2m ; do \
+ -for file in ${INSTALLABLES} ${INSTALLABLE_SCRIPTS} ; do \
chgrp bin ${bindir}/$${file}.new ; \
chown bin ${bindir}/$${file}.new ; \
rm -f ${bindir}/$${file} ; \