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 /configure.in | |
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 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index e35f712c3b8..8c3b3228241 100644 --- a/configure.in +++ b/configure.in @@ -1588,7 +1588,9 @@ if test "${HAVE_NS}" = yes; then if test "${EN_NS_SELF_CONTAINED}" = yes; then prefix=${ns_appresdir} exec_prefix=${ns_appbindir} - libexecdir=${ns_appbindir}/libexec + dnl This one isn't really used, only archlibdir is. + libexecdir="\${ns_appbindir}/libexec" + archlibdir="\${ns_appbindir}/libexec" LEIM_INSTALLDIR="\${ns_appresdir}/leim" fi ns_frag=$srcdir/src/ns.mk |