]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
Fix failures reported by Patrick Welche on NetBSD.
authorAlexandre Duret-Lutz <adl@gnu.org>
Wed, 24 Jul 2002 21:45:46 +0000 (21:45 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Wed, 24 Jul 2002 21:45:46 +0000 (21:45 +0000)
* tests/gnits2.test, tests/gnits3.test: Don't trust the exit
status of `make -k'.
* tests/obsolete.test: Source obs.1 and obs.2 from current
directory.

ChangeLog
tests/gnits2.test
tests/gnits3.test
tests/obsolete.test

index f2e60e412954a456118f130653ae0a4e05200241..26fc8caef0415ed17ef33ba55e3d8496cd0e4955 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2002-07-24  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       Fix failures reported by Patrick Welche on NetBSD.
+       * tests/gnits2.test, tests/gnits3.test: Don't trust the exit
+       status of `make -k'.
+       * tests/obsolete.test: Source obs.1 and obs.2 from current
+       directory.
+
 2002-07-23  Patrick Welche  <prlw1@newn.cam.ac.uk>
 
        * lib/am/configure.am (am__CONFIG_DISTCLEAN_FILES): Add
index 50a79d44118a0e6f5bce210d600a57571727c9bf..b81cd17fa3cc78dc129545135eef90faec66745c 100755 (executable)
@@ -73,7 +73,7 @@ $MAKE all
 $MAKE install
 test -f ../inst-dir/bin/pfine
 test ! -f ../inst-dir/bin/fine
-$MAKE -k installcheck 2>stderr && exit 1
+$MAKE -k installcheck 2>stderr || : # Never trust the exit status of make -k.
 cat stderr
 grep 'pfubar does not support' stderr
 grep 'pfubar3 does not support' stderr
index 256023b4732db615c910b2cf9820b88a4aa68452..70c3ba942d0dc7c3d10ae8445653028169074d1e 100755 (executable)
@@ -62,7 +62,7 @@ cd build
 ../configure --prefix=`pwd`/../inst-dir --program-prefix=p
 $MAKE
 $MAKE install
-$MAKE -k installcheck 2>stderr && exit 1
+$MAKE -k installcheck 2>stderr || : # Never trust the exit status of make -k.
 cat stderr
 grep 'sub/pnok does not support' stderr
 grep 'sub/pnok.sh does not support' stderr
index 1036659af44bc71b7c2094a37b87564ea6df7986..0505f99a32dde00c5e8a2f5a87f230b851d3fb2d 100755 (executable)
@@ -21,10 +21,10 @@ $ACLOCAL || exit 1
 
 # Expect Autoconf to complain about each of the macros in obs.
 $AUTOCONF -Wobsolete >stderr 2>&1
-. obs.1
+. ./obs.1
 # Make sure Autoupdate remove each of these macros.
 $AUTOUPDATE || exit 1
-. obs.2
+. ./obs.2
 
 # Autoconf should be able to grok the updated configure.in.
 $AUTOCONF || exit 1