summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@iDaemons.org>2012-12-19 23:56:56 -0800
committerGlenn Morris <rgm@gnu.org>2012-12-19 23:56:56 -0800
commit49faf038c2d86de50ecb5137d17aad5c4150bd80 (patch)
treeb71e9000a74f91e17d1cba673e3032a0ca27e7ae
parent8c841dda8d2c1933f6838fbceba0b79ad3c30822 (diff)
downloademacs-49faf038c2d86de50ecb5137d17aad5c4150bd80.tar.gz
* Makefile.in (install-arch-dep): Ignore chmod errors (tiny change)
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d10285eb907..025ed9602af 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/Makefile.in b/Makefile.in
index bec9b0eea14..657884c8498 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -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); \