* Makefile.in (install-arch-dep): Tweak previous change.

This commit is contained in:
Glenn Morris 2011-11-21 20:56:49 -05:00
parent 816be9f629
commit 60bf278fd3
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2011-11-22 Glenn Morris <rgm@gnu.org>
* Makefile.in (install-arch-dep): Tweak previous change.
2011-11-22 Yavor Doganov <yavor@gnu.org>
Do not install arch-dependent files in the app bundle if

View file

@ -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?