diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-05-28 00:55:10 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-05-28 00:55:10 +0000 |
commit | b70cff717b6f580d5193a074df4d47fe3d80e10e (patch) | |
tree | e2affbfde626f7b0101674791eeca37908a964b7 /lib-src | |
parent | 83591e664cf2423632b69c2dd02339f581b2998d (diff) | |
download | emacs-b70cff717b6f580d5193a074df4d47fe3d80e10e.tar.gz |
(install): Get the scripts from ${srcdir}, unlike the executables.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index eae3e5537dc..bf9b3e23115 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in @@ -138,10 +138,14 @@ ${archlibdir}: all 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.)" |