# HG changeset patch # User Jim Blandy # Date 738470817 0 # Node ID f877f11c8f20b952902e2a102264465f817c0c71 # Parent 665ae1c5c3b3c1420f52c7df3c3cf59224301ada * 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. diff -r 665ae1c5c3b3 -r f877f11c8f20 lib-src/Makefile.in --- a/lib-src/Makefile.in Thu May 27 02:27:22 1993 +0000 +++ b/lib-src/Makefile.in Thu May 27 02:46:57 1993 +0000 @@ -138,14 +138,14 @@ 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} ; \