* mu4e/Makefile: allow configuring the lispdir
`lispdir` is no longer hardcoded in the Makefile. Users can set the desired `lispdir` at configure time, with `./configure --with-lispdir='...'`; or at install time with `make lispdir='...' install`. The default install path is the folder `mu4e/` inside whatever AM_PATH_LISP finds, which is probably what the original default intended. This change fixes #320.
This commit is contained in:
@ -60,8 +60,10 @@ AC_ARG_ENABLE([mu4e],
|
||||
AS_HELP_STRING([--disable-mu4e],[Disable building mu4e]))
|
||||
AS_IF([test "x$enable_mu4e" != "xno"], [
|
||||
AM_PATH_LISPDIR
|
||||
AS_IF([test "x$lispdir" != "xno"],
|
||||
[emacs_version="`$EMACS --version | head -1`"])
|
||||
AS_IF([test "x$lispdir" != "xno"], [
|
||||
emacs_version="`$EMACS --version | head -1`"
|
||||
lispdir="${lispdir}/mu4e/"
|
||||
])
|
||||
AS_CASE([$emacs_version],[*23*|*24*|*25*],[build_mu4e=yes],
|
||||
[AC_WARN([emacs is too old to build mu4e (need emacs >= 23.x)])])
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user