aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorBrian Fox1993-09-30 23:25:30 +0000
committerBrian Fox1993-09-30 23:25:30 +0000
commit544d556f9e73af1db54da789bfc88d14e7b20fda (patch)
treedaa5869bb5b09a381ffcf69e6cb1786f9b307887 /lib-src
parent6703f6cdbd528a87d600518d04ccf639b950ef0c (diff)
downloademacs-544d556f9e73af1db54da789bfc88d14e7b20fda.tar.gz
emacs-544d556f9e73af1db54da789bfc88d14e7b20fda.zip
(${archlibdir}): Install ${SCRIPTS} from ${srcdir}, not from current
directory. Only chmod and chgrp files that we installed, which excludes ${INSTALLABLE_SCRIPTS}. They go in ${bindir}. (INSTALLFLAGS): Deleted definition, since it is an unused variable now.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/Makefile.in9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index 426c1f3c5d5..1ac1f9aa9eb 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -70,7 +70,6 @@ archlibdir=@archlibdir@
70 70
71@ ../configure figures out the correct values for these. 71@ ../configure figures out the correct values for these.
72INSTALL = @INSTALL@ 72INSTALL = @INSTALL@
73INSTALLFLAGS = -c
74INSTALL_PROGRAM = @INSTALL_PROGRAM@ 73INSTALL_PROGRAM = @INSTALL_PROGRAM@
75INSTALL_DATA = @INSTALL_DATA@ 74INSTALL_DATA = @INSTALL_DATA@
76 75
@@ -117,7 +116,11 @@ ${archlibdir}: all
117 @echo "Installing utilities run internally by Emacs." 116 @echo "Installing utilities run internally by Emacs."
118 ./make-path ${archlibdir} 117 ./make-path ${archlibdir}
119 if [ `(cd ${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \ 118 if [ `(cd ${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \
120 for file in ${UTILITIES} ${SCRIPTS}; do \ 119 for file in ${UTILITIES}; do \
120 $(INSTALL_PROGRAM) $$file ${archlibdir}/$$file ; \
121 chmod 755 ${archlibdir}/$$file ; \
122 done ; \
123 for file in ${SCRIPTS}; do \
121 $(INSTALL_PROGRAM) $$file ${archlibdir}/$$file ; \ 124 $(INSTALL_PROGRAM) $$file ${archlibdir}/$$file ; \
122 chmod 755 ${archlibdir}/$$file ; \ 125 chmod 755 ${archlibdir}/$$file ; \
123 done ; \ 126 done ; \
@@ -125,7 +128,7 @@ ${archlibdir}: all
125 @echo 128 @echo
126 @echo "Changing the owner and group of Emacs's utility programs to \`bin'." 129 @echo "Changing the owner and group of Emacs's utility programs to \`bin'."
127 @echo "(You may ignore errors here if you don't care about this.)" 130 @echo "(You may ignore errors here if you don't care about this.)"
128 -for file in ${EXECUTABLES} ; do \ 131 -for file in ${UTILITIES} ${SCRIPTS} ; do \
129 chgrp bin ${archlibdir}/$${file} ; \ 132 chgrp bin ${archlibdir}/$${file} ; \
130 chown bin ${archlibdir}/$${file} ; \ 133 chown bin ${archlibdir}/$${file} ; \
131 done 134 done