aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan D2015-02-13 17:44:26 +0100
committerJan D2015-02-13 17:44:26 +0100
commitb9d8edcf6dbe5651919bfb42687d16794f2d86f8 (patch)
tree47fb2f806c7cb4e61c307b3ea064cbe7616f1b03
parenta03ab7eaf532075d2948ece70b8f3c97cd26b577 (diff)
downloademacs-b9d8edcf6dbe5651919bfb42687d16794f2d86f8.tar.gz
emacs-b9d8edcf6dbe5651919bfb42687d16794f2d86f8.zip
Fixes: debbugs:19850
* configure.ac: Set locallisppath to empty for NS self contained, unless --enable-loadllisppath was given.
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac4
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a574ac86e24..43656680f9c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12015-02-13 Jan Djärv <jan.h.d@swipnet.se>
2
3 * configure.ac: Set locallisppath to empty for NS self contained,
4 unless --enable-loadllisppath was given (Bug#19850).
5
12015-02-09 Paul Eggert <eggert@cs.ucla.edu> 62015-02-09 Paul Eggert <eggert@cs.ucla.edu>
2 7
3 * configure.ac (HAVE_LIBXML2): Add missing comma. 8 * configure.ac (HAVE_LIBXML2): Add missing comma.
diff --git a/configure.ac b/configure.ac
index 68291b8950b..0bcc55c4c20 100644
--- a/configure.ac
+++ b/configure.ac
@@ -423,6 +423,7 @@ AC_ARG_ENABLE(ns-self-contained,
423 EN_NS_SELF_CONTAINED=$enableval, 423 EN_NS_SELF_CONTAINED=$enableval,
424 EN_NS_SELF_CONTAINED=yes) 424 EN_NS_SELF_CONTAINED=yes)
425 425
426locallisppathset=no
426AC_ARG_ENABLE(locallisppath, 427AC_ARG_ENABLE(locallisppath,
427[AS_HELP_STRING([--enable-locallisppath=PATH], 428[AS_HELP_STRING([--enable-locallisppath=PATH],
428 [directories Emacs should search for lisp files specific 429 [directories Emacs should search for lisp files specific
@@ -430,7 +431,7 @@ AC_ARG_ENABLE(locallisppath,
430if test "${enableval}" = "no"; then 431if test "${enableval}" = "no"; then
431 locallisppath= 432 locallisppath=
432elif test "${enableval}" != "yes"; then 433elif test "${enableval}" != "yes"; then
433 locallisppath=${enableval} 434 locallisppath=${enableval} locallisppathset=yes
434fi) 435fi)
435 436
436AC_ARG_ENABLE(checking, 437AC_ARG_ENABLE(checking,
@@ -1871,6 +1872,7 @@ if test "${HAVE_NS}" = yes; then
1871 infodir="\${ns_appresdir}/info" 1872 infodir="\${ns_appresdir}/info"
1872 mandir="\${ns_appresdir}/man" 1873 mandir="\${ns_appresdir}/man"
1873 lispdir="\${ns_appresdir}/lisp" 1874 lispdir="\${ns_appresdir}/lisp"
1875 test "$locallisppathset" = no && locallisppath=""
1874 INSTALL_ARCH_INDEP_EXTRA= 1876 INSTALL_ARCH_INDEP_EXTRA=
1875 fi 1877 fi
1876 1878