emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r111043: * Makefile.in (install-ar


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r111043: * Makefile.in (install-arch-dep): Ignore chmod errors (tiny change)
Date: Wed, 19 Dec 2012 23:56:56 -0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111043
fixes bug: http://debbugs.gnu.org/13233
author: Akinori MUSHA <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: emacs-24
timestamp: Wed 2012-12-19 23:56:56 -0800
message:
  * Makefile.in (install-arch-dep): Ignore chmod errors (tiny change)
modified:
  ChangeLog
  Makefile.in
=== modified file 'ChangeLog'
--- a/ChangeLog 2012-12-13 04:47:14 +0000
+++ b/ChangeLog 2012-12-20 07:56:56 +0000
@@ -1,3 +1,7 @@
+2012-12-20  Akinori MUSHA  <address@hidden>  (tiny change)
+
+       * Makefile.in (install-arch-dep): Ignore chmod errors.  (Bug#13233)
+
 2012-12-13  Glenn Morris  <address@hidden>
 
        * info/dir: Add bovine, wisent.

=== modified file 'Makefile.in'
--- a/Makefile.in       2012-12-12 17:52:01 +0000
+++ b/Makefile.in       2012-12-20 07:56:56 +0000
@@ -445,7 +445,7 @@
            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); \


reply via email to

[Prev in Thread] Current Thread [Next in Thread]