]> sourceware.org Git - automake.git/commitdiff
* tests/dirname.test: Use --quiet to fix failure on installations
authorAlexandre Duret-Lutz <adl@gnu.org>
Thu, 21 Mar 2002 09:26:08 +0000 (09:26 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Thu, 21 Mar 2002 09:26:08 +0000 (09:26 +0000)
using a site script.
Reported by Nicolas Joly.

ChangeLog
tests/dirname.test

index c61b4280c561a380d85ce1c2e61270299605402f..95db22e3363596f661a451a5f48db04bffc2533e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-03-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       * tests/dirname.test: Use --quiet to fix failure on installations
+       using a site script.
+       Reported by Nicolas Joly.
+
 2002-03-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
        * Makefile.am (maintainer-check): Check for misuses of make,
index 3f21d4ec7c1cf203770e704c7f827320cc59143d..706a9343c8ab748d17072e70cce7128666c02307 100755 (executable)
@@ -19,7 +19,9 @@ $ACLOCAL || exit 1
 # fail gracefully if autoconf didn't support support our regexps anyhow
 $AUTOCONF || exit 77
 
-$SHELL ./configure >got || exit 1
+# Use --quiet otherwise unwelcome messages like "loading site script"
+# would cause a failure.
+$SHELL ./configure --quiet >got || exit 1
 
 cat >wanted <<EOF
 1 /a/path/to/a/file      = /a/path/to/a
This page took 0.032085 seconds and 5 git commands to generate.