]> sourceware.org Git - automake.git/commitdiff
* m4/lispdir.m4: Added --with-lispdir argument processing.
authorTom Tromey <tromey@redhat.com>
Thu, 13 Jan 2000 00:58:57 +0000 (00:58 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 13 Jan 2000 00:58:57 +0000 (00:58 +0000)
From Kevin Dalley.

ChangeLog
m4/lispdir.m4

index a32704ab9febc4fadc4010176c5424fa9918b0f3..c7fee91950e02caba2de49fc19e98f904b74f81c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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
index cf9f2af30ed801d02d9fec53f7bc7b5faa110dde..009a0e0ff64ae31138a640210c4b4b4ffd2f3b74 100644 (file)
@@ -7,7 +7,13 @@
 # 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)
@@ -22,4 +28,5 @@ AC_DEFUN(AM_PATH_LISPDIR,
       lispdir="$am_cv_lispdir"
     fi
   fi
-  AC_SUBST(lispdir)])
+ ])
+ AC_SUBST(lispdir)])
This page took 0.031575 seconds and 5 git commands to generate.