From: Lute Kamstra Date: Thu, 19 May 2005 08:28:29 +0000 (+0000) Subject: Add --enable-locallisppath. X-Git-Tag: ttn-vms-21-2-B4~151 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=261967be48afece949149e70bc8268e10a72de1a;p=emacs.git Add --enable-locallisppath. --- diff --git a/configure.in b/configure.in index 181b86007df..ec772a5c2a4 100644 --- a/configure.in +++ b/configure.in @@ -142,6 +142,16 @@ else fi AC_SUBST(MAINT) +AC_ARG_ENABLE(locallisppath, +[ --enable-locallisppath=PATH + directories Emacs should search for lisp files + specific to this site], +if test "${enableval}" = "no"; then + locallisppath= +elif test "${enableval}" != "yes"; then + locallisppath=${enableval} +fi) + #### Make srcdir absolute, if it isn't already. It's important to #### avoid running the path through pwd unnecessarily, since pwd can #### give you automounter prefixes, which can go away. We do all this