]> sourceware.org Git - automake.git/commitdiff
* automake.in (&scan_autoconf_traces): Add support for
authorAkim Demaille <akim@epita.fr>
Sun, 21 Oct 2001 18:03:57 +0000 (18:03 +0000)
committerAkim Demaille <akim@epita.fr>
Sun, 21 Oct 2001 18:03:57 +0000 (18:03 +0000)
AM_PATH_LISPDIR and AM_PATH_PYTHON.

ChangeLog
automake.in

index 156816572ed6f221566689af87ecddeea20b5f89..21ac79202cf7828e657eef43a54f35b76bd4f94e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-21  Akim Demaille  <akim@epita.fr>
+
+       * automake.in (&scan_autoconf_traces): Add support for
+       AM_PATH_LISPDIR and AM_PATH_PYTHON.
+
 2001-10-21  Akim Demaille  <akim@epita.fr>
 
        * tests/defs (ACLOCAL): Point to the installed aclocaldir is
index b43dde5f2e8479e1a894fa0bdbb93061f879e1d4..b2bd3d800d6abbc7312881dc88bdf6ee5ed766ab 100755 (executable)
@@ -4458,6 +4458,8 @@ sub scan_autoconf_traces ($)
                'AM_GNU_GETTEXT',
                'AM_INIT_AUTOMAKE',
                'AM_MAINTAINER_MODE',
+               'AM_PATH_LISPDIR',
+               'AM_PATH_PYTHON',
                'AM_PROG_CC_C_O',
               );
 
@@ -4556,11 +4558,19 @@ sub scan_autoconf_traces ($)
        {
          $seen_maint_mode = $here;
        }
+      elsif ($macro eq 'AM_PATH_LISPDIR')
+       {
+         $seen_lispdir = $here;
+       }
+      elsif ($macro eq 'AM_PATH_PYTHON')
+       {
+         $seen_pythondir = $here;
+       }
       elsif ($macro eq 'AM_PROG_CC_C_O')
        {
          $seen_cc_c_o = $here;
        }
-    }
+   }
 }
 
 
This page took 0.041288 seconds and 5 git commands to generate.