]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Fix test of autom4te from stdin.
authorEric Blake <ebb9@byu.net>
Wed, 22 Jul 2009 12:50:14 +0000 (06:50 -0600)
committerEric Blake <ebb9@byu.net>
Wed, 22 Jul 2009 12:50:14 +0000 (06:50 -0600)
* tests/tools.at (autom4te cache locking): Make stdin request
explicit, so that --force is properly used.

Signed-off-by: Eric Blake <ebb9@byu.net>
ChangeLog
tests/tools.at

index e1a64947fe31d3f1ee352e249bfd2002d5568480..4b9fb5c97c9126423fb0a2c6e064682e7da5ff15 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-07-22  Eric Blake  <ebb9@byu.net>
+
+       Fix test of autom4te from stdin.
+       * tests/tools.at (autom4te cache locking): Make stdin request
+       explicit, so that --force is properly used.
+
 2009-07-16  Eric Blake  <ebb9@byu.net>
 
        Don't hide leading space in autom4te --trace output.
index 542e668a9c3867c8115157cf83186feb91dd5909..529eb93deb5ddd107536d6c5d7ef04db4a5719a0 100644 (file)
@@ -1034,8 +1034,8 @@ AT_SETUP([autom4te cache locking])
 # Cannot use AT_CHECK here, autotest internals could be messed up.
 
 (echo AC_INIT; sleep 2; echo) \
-  | (autom4te --language=autoconf -o configure; echo $? >&2 ) 2>errlog &
-AT_CHECK([echo AC_INIT | autom4te --language=autoconf -o configure])
+  | (autom4te --language=autoconf -o configure -; echo $? >&2 ) 2>errlog &
+AT_CHECK([echo AC_INIT | autom4te --language=autoconf -o configure -])
 wait
 
 # Ignore additional output from shell verbose or xtrace mode.