From: Pavel Roskin Date: Fri, 9 Feb 2001 01:18:38 +0000 (+0000) Subject: * tests/pr87.test: Check foo/Makfile.in after it is created. X-Git-Tag: Release-1-4d~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cac69f73c00fbac6870f4c28d704271287049366;p=thirdparty%2Fautomake.git * tests/pr87.test: Check foo/Makfile.in after it is created. --- diff --git a/ChangeLog b/ChangeLog index bc1c562fe..bba04c059 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-02-08 Pavel Roskin + + * tests/pr87.test: Check foo/Makfile.in after it is created. + 2001-02-08 Tom Tromey * tests/pr87.test: Added check for blank line after `.c.o' rule. diff --git a/tests/pr87.test b/tests/pr87.test index baa3cc8da..b6c25f053 100755 --- a/tests/pr87.test +++ b/tests/pr87.test @@ -38,6 +38,12 @@ mkdir build rm missing install-sh mkinstalldirs +# We use gcc and not gcc -traditional as the latter fails on some +# Linux boxes (Red Hat 5.1 in particular). +$ACLOCAL \ + && $AUTOCONF \ + && $AUTOMAKE -a || exit 1 + # Regression test for bug where `.c.o:' is followed by blank line. (while read line; do if test "$line" = ".c.o:"; then @@ -49,11 +55,6 @@ rm missing install-sh mkinstalldirs fi done) < foo/Makefile.in || exit 1 -# We use gcc and not gcc -traditional as the latter fails on some -# Linux boxes (Red Hat 5.1 in particular). -$ACLOCAL \ - && $AUTOCONF \ - && $AUTOMAKE -a \ - && cd build \ +cd build \ && CC='gcc' ../configure \ - && $MAKE distcheck + && $MAKE distcheck || exit 1