From: Glenn Morris Date: Tue, 15 May 2012 17:09:00 +0000 (-0400) Subject: Stop NS install symlinking libexec/* into bin/ X-Git-Tag: emacs-24.2.90~471^2~77 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ec3ca9ec47f677fb04ba28fe7adb7f126f02fc08;p=emacs.git Stop NS install symlinking libexec/* into bin/ * Makefile.in (install-arch-dep): NS install no longer needs to symlink libexec/* into bin/, since 2012-05-14 ns_init_paths change. --- diff --git a/ChangeLog b/ChangeLog index b4b7bdb9f10..412d4aa5324 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-05-15 Glenn Morris + + * Makefile.in (install-arch-dep): NS install no longer needs to + symlink libexec/* into bin/, since 2012-05-14 ns_init_paths change. + 2012-05-12 Glenn Morris * configure.in (ns_appbindir): Remove trailing "/". diff --git a/Makefile.in b/Makefile.in index 0a62875c977..41a91462edb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -476,7 +476,7 @@ install-arch-dep: mkdir ( cd ${ns_appbindir} ; \ 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 ) ; \ + fi ; fi ) ; \ else true ; fi ## FIXME is the emacs-24* bit above really necessary and correct?