From: Glenn Morris Date: Tue, 22 Nov 2011 01:56:49 +0000 (-0500) Subject: * Makefile.in (install-arch-dep): Tweak previous change. X-Git-Tag: emacs-pretest-24.0.92~90 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=60bf278fd3a039979ad4bd0bc3423798a055e9f5;p=emacs.git * Makefile.in (install-arch-dep): Tweak previous change. --- diff --git a/ChangeLog b/ChangeLog index 521d2ab8e00..4f244c8e343 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-11-22 Glenn Morris + + * Makefile.in (install-arch-dep): Tweak previous change. + 2011-11-22 Yavor Doganov Do not install arch-dependent files in the app bundle if diff --git a/Makefile.in b/Makefile.in index 1e86f5f0176..c0d108877c1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -475,9 +475,9 @@ install-arch-dep: mkdir if test -d share/info ; then dir=share/info; $(MV_DIRS) ; fi ; \ rm -fr share ) ; \ ( cd ${ns_appbindir} ; \ - if test -d libexec; then cd libexec ; dir=emacs/*/*/* ; \ - $(MV_DIRS); rm -fr emacs; \ - cd ../bin; rm -f emacs emacs-24*; ln -sf ../libexec/* . ; fi ) ; \ + if cd libexec ; then dir=emacs/*/*/* ; $(MV_DIRS); \ + rm -fr emacs; if cd ../bin; then rm -f emacs emacs-24*; \ + ln -sf ../libexec/* . ; fi ; fi ) ; \ else true ; fi ## FIXME is the emacs-24* bit above really necessary and correct?