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.
This commit is contained in:
Glenn Morris 2012-05-15 13:09:00 -04:00
parent 2473256d7b
commit ec3ca9ec47
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-05-15 Glenn Morris <rgm@gnu.org>
* 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 <rgm@gnu.org>
* configure.in (ns_appbindir): Remove trailing "/".

View file

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