]> sourceware.org Git - automake.git/commitdiff
* tests/pr87.test: Check foo/Makfile.in after it is created.
authorPavel Roskin <proski@gnu.org>
Fri, 9 Feb 2001 01:18:38 +0000 (01:18 +0000)
committerPavel Roskin <proski@gnu.org>
Fri, 9 Feb 2001 01:18:38 +0000 (01:18 +0000)
ChangeLog
tests/pr87.test

index bc1c562fed35ee7b49eb7f3b8275ead3111a78af..bba04c0590ab017f986734c852ef9ad1a4132d0d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-02-08  Pavel Roskin  <proski@gnu.org>
+
+       * tests/pr87.test: Check foo/Makfile.in after it is created.
+
 2001-02-08  Tom Tromey  <tromey@redhat.com>
 
        * tests/pr87.test: Added check for blank line after `.c.o' rule.
index baa3cc8dada81c1a8294ad1c08568cc43dd61e98..b6c25f0530ca7270c248bea5167d59b37f170a2f 100755 (executable)
@@ -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
This page took 0.032031 seconds and 5 git commands to generate.