diff options
| author | Richard M. Stallman | 1993-05-28 00:55:10 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-05-28 00:55:10 +0000 |
| commit | b70cff717b6f580d5193a074df4d47fe3d80e10e (patch) | |
| tree | e2affbfde626f7b0101674791eeca37908a964b7 | |
| parent | 83591e664cf2423632b69c2dd02339f581b2998d (diff) | |
| download | emacs-b70cff717b6f580d5193a074df4d47fe3d80e10e.tar.gz emacs-b70cff717b6f580d5193a074df4d47fe3d80e10e.zip | |
(install): Get the scripts from ${srcdir}, unlike the executables.
| -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 | |||
| 138 | install: ${archlibdir} | 138 | install: ${archlibdir} |
| 139 | @echo | 139 | @echo |
| 140 | @echo "Installing utilities for users to run." | 140 | @echo "Installing utilities for users to run." |
| 141 | for file in ${INSTALLABLES} ${INSTALLABLE_SCRIPTS}; do \ | 141 | for file in ${INSTALLABLES} ; do \ |
| 142 | cp $${file} ${bindir}/$${file}.new ; \ | 142 | cp $${file} ${bindir}/$${file}.new ; \ |
| 143 | chmod 755 ${bindir}/$${file}.new ; \ | 143 | chmod 755 ${bindir}/$${file}.new ; \ |
| 144 | done | 144 | done |
| 145 | for file in ${INSTALLABLE_SCRIPTS} ; do \ | ||
| 146 | cp ${srcdir}/$${file} ${bindir}/$${file}.new ; \ | ||
| 147 | chmod 755 ${bindir}/$${file}.new ; \ | ||
| 148 | done | ||
| 145 | @echo | 149 | @echo |
| 146 | @echo "Changing the owner and group of utility programs to \`bin'." | 150 | @echo "Changing the owner and group of utility programs to \`bin'." |
| 147 | @echo "(You may ignore errors here if you don't care about this.)" | 151 | @echo "(You may ignore errors here if you don't care about this.)" |