* Makefile.in (install-arch-dep): Ignore chmod errors (tiny change)

Fixes: debbugs:13233
This commit is contained in:
Akinori MUSHA 2012-12-19 23:56:56 -08:00 committed by Glenn Morris
parent a1d25d028b
commit 018246572c
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2012-12-20 Akinori MUSHA <knu@iDaemons.org> (tiny change)
* Makefile.in (install-arch-dep): Ignore chmod errors. (Bug#13233)
2012-12-13 Glenn Morris <rgm@gnu.org>
* info/dir: Add bovine, wisent.

View file

@ -445,7 +445,7 @@ install-arch-dep: src install-arch-indep install-doc
INSTALL_STRIP=${INSTALL_STRIP}
if test "${ns_self_contained}" = "no"; then \
${INSTALL_PROGRAM} $(INSTALL_STRIP) src/emacs${EXEEXT} $(DESTDIR)${bindir}/$(EMACSFULL) || exit 1 ; \
chmod 1755 $(DESTDIR)${bindir}/$(EMACSFULL) ; \
chmod 1755 $(DESTDIR)${bindir}/$(EMACSFULL) || true; \
if test "x${NO_BIN_LINK}" = x; then \
rm -f $(DESTDIR)${bindir}/$(EMACS) ; \
cd $(DESTDIR)${bindir} && $(LN_S) $(EMACSFULL) $(EMACS); \