* lib-src/Makefile.in (install): Remove unneeded chmods.
INSTALL_PROGRAM and INSTALL_SCRIPT default to mode 755.
This commit is contained in:
parent
35c46c2f9a
commit
32514cfe68
2 changed files with 4 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2012-05-22 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* Makefile.in (install): Remove unneeded chmods.
|
||||
|
||||
2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
Assume C89 or later.
|
||||
|
|
|
@ -262,11 +262,9 @@ install: $(DESTDIR)${archlibdir}
|
|||
umask 022; ${MKDIR_P} $(DESTDIR)${bindir}
|
||||
for file in ${INSTALLABLES} ; do \
|
||||
$(INSTALL_PROGRAM) $(INSTALL_STRIP) $${file} $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'` ; \
|
||||
chmod a+rx $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'`; \
|
||||
done
|
||||
for file in ${INSTALLABLE_SCRIPTS} ; do \
|
||||
$(INSTALL_SCRIPT) ${srcdir}/$${file} $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'` ; \
|
||||
chmod a+rx $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'`; \
|
||||
done
|
||||
|
||||
uninstall:
|
||||
|
|
Loading…
Add table
Reference in a new issue