From 80738acdc8104000118147390bb271a87eaabf83 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Sun, 21 Oct 2001 18:03:57 +0000 Subject: [PATCH] * automake.in (&scan_autoconf_traces): Add support for AM_PATH_LISPDIR and AM_PATH_PYTHON. --- ChangeLog | 5 +++++ automake.in | 12 +++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 15681657..21ac7920 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-10-21 Akim Demaille + + * automake.in (&scan_autoconf_traces): Add support for + AM_PATH_LISPDIR and AM_PATH_PYTHON. + 2001-10-21 Akim Demaille * tests/defs (ACLOCAL): Point to the installed aclocaldir is diff --git a/automake.in b/automake.in index b43dde5f..b2bd3d80 100755 --- a/automake.in +++ b/automake.in @@ -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; } - } + } } -- 2.43.5