aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLute Kamstra2005-05-19 08:28:29 +0000
committerLute Kamstra2005-05-19 08:28:29 +0000
commit261967be48afece949149e70bc8268e10a72de1a (patch)
treeba8527472e2c0f5330aa271eae17fac587daa897
parent73d5f66837db28554b5b96d6d846d9fca8a74ce7 (diff)
downloademacs-261967be48afece949149e70bc8268e10a72de1a.tar.gz
emacs-261967be48afece949149e70bc8268e10a72de1a.zip
Add --enable-locallisppath.
-rw-r--r--configure.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 181b86007df..ec772a5c2a4 100644
--- a/configure.in
+++ b/configure.in
@@ -142,6 +142,16 @@ else
142fi 142fi
143AC_SUBST(MAINT) 143AC_SUBST(MAINT)
144 144
145AC_ARG_ENABLE(locallisppath,
146[ --enable-locallisppath=PATH
147 directories Emacs should search for lisp files
148 specific to this site],
149if test "${enableval}" = "no"; then
150 locallisppath=
151elif test "${enableval}" != "yes"; then
152 locallisppath=${enableval}
153fi)
154
145#### Make srcdir absolute, if it isn't already. It's important to 155#### Make srcdir absolute, if it isn't already. It's important to
146#### avoid running the path through pwd unnecessarily, since pwd can 156#### avoid running the path through pwd unnecessarily, since pwd can
147#### give you automounter prefixes, which can go away. We do all this 157#### give you automounter prefixes, which can go away. We do all this