Mercurial > emacs
changeset 3188:b901b5e04fbb
(install): Get the scripts from ${srcdir}, unlike the executables.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 28 May 1993 00:55:10 +0000 |
parents | 0790b5563a66 |
children | 77efda0d2b31 |
files | lib-src/Makefile.in |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lib-src/Makefile.in Fri May 28 00:51:49 1993 +0000 +++ b/lib-src/Makefile.in Fri May 28 00:55:10 1993 +0000 @@ -138,10 +138,14 @@ install: ${archlibdir} @echo @echo "Installing utilities for users to run." - for file in ${INSTALLABLES} ${INSTALLABLE_SCRIPTS}; do \ + for file in ${INSTALLABLES} ; do \ cp $${file} ${bindir}/$${file}.new ; \ chmod 755 ${bindir}/$${file}.new ; \ done + for file in ${INSTALLABLE_SCRIPTS} ; do \ + cp ${srcdir}/$${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.)"