diff options
author | Glenn Morris <rgm@gnu.org> | 2010-05-14 17:48:53 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-05-14 17:48:53 -0700 |
commit | 2b5f541b4f67c7978cf124012593c7ceaeab6292 (patch) | |
tree | 52e8250a2ff12fcf3171e58793dd4da9a661c3de /Makefile.in | |
parent | 02be533b2a5020338453da4957d30dde4ed2c6fb (diff) | |
download | emacs-2b5f541b4f67c7978cf124012593c7ceaeab6292.tar.gz |
Minor NS build fixes.
* Makefile.in (install-arch-dep): Update odd NS rule for Emacs version.
* src/Makefile.in (${ns_appdir}): Simplify using umask.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 245ec6cc8e6..d21a9e56976 100644 --- a/Makefile.in +++ b/Makefile.in @@ -425,10 +425,15 @@ install-arch-dep: mkdir rm -fr share ) ; \ ( cd ${ns_appbindir}/libexec ; dir=emacs/*/*/* ; $(MV_DIRS); \ rm -fr emacs ) ; \ - ( cd ${ns_appbindir}/bin ; rm -f emacs emacs-23* ; \ + ( cd ${ns_appbindir}/bin ; rm -f emacs emacs-24* ; \ ln -sf ../libexec/* .) ; \ else true ; fi +## FIXME is the emacs-24* bit above really necessary and correct? +## What if I have 24.1 and 24.2 installed at the same time? +## In any case, it should use something like echo $version | sed 's/\..*//' +## instead of hard-coding a version. + ## http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg01672.html ## Needs to be the user running install, so configure can't set it. set_installuser=for installuser in $${LOGNAME} $${USERNAME} $${USER} \ |