Mercurial > emacs
diff lib-src/Makefile.in @ 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 | ce5dcfc00c34 |
| children | 05268cd6e571 |
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.)"
