* Makefile.in (install-arch-dep): Ignore chmod errors (tiny change)
Fixes: debbugs:13233
This commit is contained in:
parent
a1d25d028b
commit
018246572c
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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); \
|
||||
|
|
Loading…
Add table
Reference in a new issue