]> git.eshelyaron.com Git - emacs.git/commitdiff
Fixes: debbugs:19850
authorJan D <jan.h.d@swipnet.se>
Fri, 13 Feb 2015 16:44:26 +0000 (17:44 +0100)
committerJan D <jan.h.d@swipnet.se>
Fri, 13 Feb 2015 16:44:26 +0000 (17:44 +0100)
* configure.ac: Set locallisppath to empty for NS self contained,
unless --enable-loadllisppath was given.

ChangeLog
configure.ac

index a574ac86e2431a6916d1e0e7ead74025d2771d1a..43656680f9c37218e160b2e1f267b5da690d3738 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-02-13  Jan Djärv  <jan.h.d@swipnet.se>
+
+       * configure.ac: Set locallisppath to empty for NS self contained,
+       unless --enable-loadllisppath was given (Bug#19850).
+
 2015-02-09  Paul Eggert  <eggert@cs.ucla.edu>
 
        * configure.ac (HAVE_LIBXML2): Add missing comma.
index 68291b8950b1b9193bca6db1500148a9440f7e31..0bcc55c4c202ee81b7aec41e89866f8f8ad3cb0e 100644 (file)
@@ -423,6 +423,7 @@ AC_ARG_ENABLE(ns-self-contained,
    EN_NS_SELF_CONTAINED=$enableval,
    EN_NS_SELF_CONTAINED=yes)
 
+locallisppathset=no
 AC_ARG_ENABLE(locallisppath,
 [AS_HELP_STRING([--enable-locallisppath=PATH],
                 [directories Emacs should search for lisp files specific
@@ -430,7 +431,7 @@ AC_ARG_ENABLE(locallisppath,
 if test "${enableval}" = "no"; then
   locallisppath=
 elif test "${enableval}" != "yes"; then
-  locallisppath=${enableval}
+  locallisppath=${enableval} locallisppathset=yes
 fi)
 
 AC_ARG_ENABLE(checking,
@@ -1871,6 +1872,7 @@ if test "${HAVE_NS}" = yes; then
      infodir="\${ns_appresdir}/info"
      mandir="\${ns_appresdir}/man"
      lispdir="\${ns_appresdir}/lisp"
+     test "$locallisppathset" = no && locallisppath=""
      INSTALL_ARCH_INDEP_EXTRA=
   fi