aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-04-07 10:07:23 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-04-07 10:09:35 -0700
commita7a961c510a87dc8af2842decabcbc9ecb7c1139 (patch)
tree220508053fdec15f1723793060189ae1aaf1e2ff /configure
parent8d4fa40beccde5ec879cc05341e45b18a6cf9e0f (diff)
Makefile: Install emacs code to site-lisp, not site-lisp/notmuch
And just make the Debian packaging request site-lisp/notmuch like it wants. Otherwise, the installed files won't appear on the load-path so won't be found by emacs.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 21780a61..959c65aa 100755
--- a/configure
+++ b/configure
@@ -71,7 +71,7 @@ Fine tuning of some installation directories is available:
--includedir=DIR Install header files to DIR [PREFIX/include]
--mandir=DIR Install man pages to DIR [PREFIX/share/man]
--sysconfdir=DIR Read-only single-machine data [PREFIX/etc]
- --emacslispdir=DIR Elisp [PREFIX/share/emacs/site-lisp/notmuch]
+ --emacslispdir=DIR Emacs code [PREFIX/share/emacs/site-lisp]
Additional options are accepted for compatibility with other
configure-script calling conventions, but don't do anything yet:
@@ -219,9 +219,9 @@ fi
if [ -z "${EMACSLISPDIR}" ]; then
if pkg-config --modversion emacs > /dev/null 2>&1; then
- EMACSLISPDIR=$(pkg-config emacs --variable sitepkglispdir)/notmuch
+ EMACSLISPDIR=$(pkg-config emacs --variable sitepkglispdir)
else
- EMACSLISPDIR='$(prefix)/share/emacs/site-lisp/notmuch'
+ EMACSLISPDIR='$(prefix)/share/emacs/site-lisp'
fi
fi