diff options
| author | Jan D | 2015-02-13 17:44:26 +0100 |
|---|---|---|
| committer | Jan D | 2015-02-13 17:44:26 +0100 |
| commit | b9d8edcf6dbe5651919bfb42687d16794f2d86f8 (patch) | |
| tree | 47fb2f806c7cb4e61c307b3ea064cbe7616f1b03 | |
| parent | a03ab7eaf532075d2948ece70b8f3c97cd26b577 (diff) | |
| download | emacs-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-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.ac | 4 |
2 files changed, 8 insertions, 1 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2015-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 | |||
| 1 | 2015-02-09 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2015-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 | ||
| 426 | locallisppathset=no | ||
| 426 | AC_ARG_ENABLE(locallisppath, | 427 | AC_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, | |||
| 430 | if test "${enableval}" = "no"; then | 431 | if test "${enableval}" = "no"; then |
| 431 | locallisppath= | 432 | locallisppath= |
| 432 | elif test "${enableval}" != "yes"; then | 433 | elif test "${enableval}" != "yes"; then |
| 433 | locallisppath=${enableval} | 434 | locallisppath=${enableval} locallisppathset=yes |
| 434 | fi) | 435 | fi) |
| 435 | 436 | ||
| 436 | AC_ARG_ENABLE(checking, | 437 | AC_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 | ||