summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorYavor Doganov <yavor@gnu.org>2011-11-21 20:37:45 -0500
committerGlenn Morris <rgm@gnu.org>2011-11-21 20:37:45 -0500
commit816be9f6298874bd26a61c28a97be74ff2298d8d (patch)
treef58bb9c5792b4618f30e9abcea7b8ae8b54ee196 /configure.in
parent84b54fdfa6d56214e9377fc959a761ff04705557 (diff)
downloademacs-816be9f6298874bd26a61c28a97be74ff2298d8d.tar.gz
Small fix for --disable-ns-self-contained builds
Do not install arch-dependent files in the app bundle if --disable-ns-self-contained is requested. * configure.in (exec_prefix, libexecdir): Define relative to ns_appbindir' only if configured for a self-contained app. * Makefile.in (install-arch-dep): Test for the existence of libexec in the Emacs.app bundle before executing commands. Fixes: debbugs:1335
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 204c0e650a7..3ff8962cef4 100644
--- a/configure.in
+++ b/configure.in
@@ -1568,10 +1568,10 @@ if test "${HAVE_NS}" = yes; then
window_system=nextstep
with_xft=no
# set up packaging dirs
- exec_prefix=${ns_appbindir}
- libexecdir=${ns_appbindir}/libexec
if test "${EN_NS_SELF_CONTAINED}" = yes; then
prefix=${ns_appresdir}
+ exec_prefix=${ns_appbindir}
+ libexecdir=${ns_appbindir}/libexec
fi
ns_frag=$srcdir/src/ns.mk
NS_OBJ="fontset.o fringe.o image.o"