From b48c6919bb7ab00cbe8e33f3f64fe0fd2458a5ab Mon Sep 17 00:00:00 2001 From: "Fred L. Drake, Jr." Date: Fri, 17 Aug 2001 19:23:02 +0000 Subject: [PATCH] Update so the tests will be run by "make check". --- expat/Makefile.in | 4 +--- expat/configure.in | 3 +++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/expat/Makefile.in b/expat/Makefile.in index e77b64c4..25351c65 100644 --- a/expat/Makefile.in +++ b/expat/Makefile.in @@ -140,9 +140,7 @@ distdir: MANIFEST done check: $(SUBDIRS) - @echo - @echo This package does not yet have a regression test. - @echo + (cd tests && $(MAKE) check) $(DISTRIBUTION): distdir tar cf - $(DISTDIR) | gzip -9 >$(DISTRIBUTION) diff --git a/expat/configure.in b/expat/configure.in index 9b84077f..d2d8bbba 100644 --- a/expat/configure.in +++ b/expat/configure.in @@ -108,4 +108,7 @@ fi if test -d ${srcdir}/examples; then OUTPUT="$OUTPUT examples/Makefile" fi +if test -d ${srcdir}/tests; then + OUTPUT="$OUTPUT tests/Makefile" +fi AC_OUTPUT($OUTPUT) -- 2.50.1