From: Ralf Wildenhues Date: Sun, 8 Aug 2010 20:30:41 +0000 (+0200) Subject: Fix maintainer-check failure. X-Git-Tag: v1.12.0b~503 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e9f3c00ace05be38caabbe29d668ad2c2cb2de9f;p=platform%2Fupstream%2Fautomake.git Fix maintainer-check failure. * tests/cond5.test: Quote sleep argument, this isn't about time stamp differences. Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index 99f8ea0..f9c3e29 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-08-08 Ralf Wildenhues + Fix maintainer-check failure. + * tests/cond5.test: Quote sleep argument, this isn't about + time stamp differences. + Sync auxiliary files from upstream. * lib/config.guess, lib/config.sub, lib/texinfo.tex: Sync from upstream. diff --git a/tests/cond5.test b/tests/cond5.test index 88e2e42..50101a6 100755 --- a/tests/cond5.test +++ b/tests/cond5.test @@ -48,15 +48,16 @@ $ACLOCAL $AUTOMAKE 2>stderr & pid=$! -# MSYS bash seems to have a bug in kill, so don't try to kill too soon. -sleep 2 +# MSYS bash seems to have a bug in kill, so don't try to kill too soon; +# and avoid maintainer-check test. +sleep '2' # Make at most 30 tries, one every 10 seconds (= 300 seconds = 5 min). try=1 while test $try -le 30; do if kill -0 $pid; then : process $pid is still alive, wait and retry - sleep 10 + sleep '10' try=`expr $try + 1` else cat stderr >&2