diff options
author | Glenn Morris <rgm@gnu.org> | 2012-05-16 21:23:03 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-05-16 21:23:03 -0400 |
commit | 3a4155de6637f737ff8b12ec3ceb2633f8e8fa26 (patch) | |
tree | acd0c12cf49f440abe4a7e8cc7d5486af8a818c1 /lib-src | |
parent | a0a79cde7c978cf457c4a817b9a67bb4557f8a5c (diff) | |
download | emacs-3a4155de6637f737ff8b12ec3ceb2633f8e8fa26.tar.gz |
Install a self-contained NS build's libexec directly into the right place
This is rather than installing it in one place then moving it.
* configure.in (archlibdir): Set it for self-contained ns builds.
(libexecdir): Don't expand it now (this is mainly cosmetic).
* Makefile.in (ns_appbindir, ns_appresdir):
Move them before things that may refer to them.
(install-arch-dep): No need to relocate self-contained ns libexec.
* lib-src/Makefile.in (ns_appbindir): New, set by configure.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/ChangeLog | 4 | ||||
-rw-r--r-- | lib-src/Makefile.in | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index aa78c25d1e1..a4a1cffaa96 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,7 @@ +2012-05-17 Glenn Morris <rgm@gnu.org> + + * Makefile.in (ns_appbindir): New, set by configure. + 2012-05-12 Glenn Morris <rgm@gnu.org> * Makefile.in (MKDIR_P): New, set by configure. diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index be19b6dc15c..1306e660630 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in @@ -45,6 +45,10 @@ TRANSFORM = @program_transform_name@ # ==================== Where To Install Things ==================== +# Location to install Emacs.app under GNUstep / Mac OS X. +# Later values may use this. +ns_appbindir=@ns_appbindir@ + # The default location for installation. Everything is placed in # subdirectories of this directory. The default values for many of # the variables below are expressed in terms of this one, so you may |