From: Akim Demaille Date: Thu, 10 Feb 2000 16:30:17 +0000 (+0000) Subject: * tests/Makefile.am (macros.m4): Better regex to build `macro'. X-Git-Tag: autoconf-2.50~1147 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97bf7770834ccaa0780dcd4c3c88517c7d0c172c;p=thirdparty%2Fautoconf.git * tests/Makefile.am (macros.m4): Better regex to build `macro'. Depend upon acgeneral.m4. --- diff --git a/ChangeLog b/ChangeLog index c33ad5b64..c90230090 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-02-10 Akim Demaille + + * tests/Makefile.am (macros.m4): Better regex to build `macro'. + Depend upon acgeneral.m4. + 2000-02-10 Akim Demaille * autoheader.sh: Remove the duplicate trap code. diff --git a/tests/Makefile.am b/tests/Makefile.am index 2a6fcbfa6..3321ddacf 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -38,9 +38,9 @@ testsuite: atgeneral.m4 atspecific.m4 suite.m4 macros.m4 $(SUITE) chmod +x $@-tmp mv $@-tmp $@ -macros.m4: $(top_srcdir)/acspecific.m4 $(srcdir)/Makefile.am +macros.m4: $(top_srcdir)/acgeneral.m4 $(top_srcdir)/acspecific.m4 $(srcdir)/Makefile.am cat $(top_srcdir)/acgeneral.m4 $(top_srcdir)/acspecific.m4 | \ - sed -ne 's/^AC_DEFUN(\[*\([^],]*\).*/\1/p' | \ + sed -ne 's/^AC_DEFUN(\[*\([a-zA-Z0-9_]*\).*$$/\1/p' | \ sort >defuns # Get the list of macros that are required: there is little interest # in testing them since they will be run but the guy who requires