Mercurial > emacs
changeset 3159:f877f11c8f20
* 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.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Thu, 27 May 1993 02:46:57 +0000 |
parents | 665ae1c5c3b3 |
children | ce5dcfc00c34 |
files | lib-src/Makefile.in |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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} ; \