+2000-01-12 Tom Tromey <tromey@cygnus.com>
+
+ * m4/lispdir.m4: Added --with-lispdir argument processing.
+ From Kevin Dalley.
+
2000-01-06 Tom Tromey <tromey@cygnus.com>
* automake.in (handle_configure): Don't check for
# serial 3
AC_DEFUN(AM_PATH_LISPDIR,
- [# If set to t, that means we are running in a shell under Emacs.
+ [AC_ARG_WITH(lispdir,
+ [ --with-lispdir Override the default lisp directory ],
+ [ lispdir="$withval"
+ AC_MSG_CHECKING([where .elc files should go])
+ AC_MSG_RESULT($lispdir)],
+ [
+ # If set to t, that means we are running in a shell under Emacs.
# If you have an Emacs named "t", then use the full path.
test x"$EMACS" = xt && EMACS=
AC_CHECK_PROGS(EMACS, emacs xemacs, no)
lispdir="$am_cv_lispdir"
fi
fi
- AC_SUBST(lispdir)])
+ ])
+ AC_SUBST(lispdir)])