aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-28 00:55:10 +0000
committerRichard M. Stallman1993-05-28 00:55:10 +0000
commitb70cff717b6f580d5193a074df4d47fe3d80e10e (patch)
treee2affbfde626f7b0101674791eeca37908a964b7
parent83591e664cf2423632b69c2dd02339f581b2998d (diff)
downloademacs-b70cff717b6f580d5193a074df4d47fe3d80e10e.tar.gz
emacs-b70cff717b6f580d5193a074df4d47fe3d80e10e.zip
(install): Get the scripts from ${srcdir}, unlike the executables.
-rw-r--r--lib-src/Makefile.in6
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
138install: ${archlibdir} 138install: ${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.)"