]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* tests/tools.at (autom4te preselections): Use `find -newer';
authorStepan Kasal <kasal@ucw.cz>
Wed, 6 Dec 2006 21:20:58 +0000 (21:20 +0000)
committerStepan Kasal <kasal@ucw.cz>
Wed, 6 Dec 2006 21:20:58 +0000 (21:20 +0000)
remove one of the sleeps.

ChangeLog
tests/tools.at

index 73fa963419f3eb79ff57d7aa26a6803c52db39f7..198b1f7f9edbc65654624ffc356a7cd7134fb6ee 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2006-12-06  Stepan Kasal  <kasal@ucw.cz>
 
+       * tests/tools.at (autom4te preselections): Use `find -newer';
+       remove one of the sleeps.
+
        * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE): Make it
        more readable, using ...
        (_AC_INIT_PARSE_ENABLE2): ... this new helper macro.
index f1b1d039f3b9cdc776dfd6918599edffcac145f8..2541ebe97119a0edf45d74b0b516bc17bc91acc9 100644 (file)
@@ -863,14 +863,13 @@ AT_CHECK([autoconf])
 # If this test fails due to missing entries in lib/autom4te.in, then
 # comparing the old and new requests is a good place to start debugging:
 cp autom4te.cache/requests old-requests
-$sleep # need to make sure the stamp file is strictly newer.
 echo newer >newer
 $sleep # if `configure' is regenerated, we want it to be strictly newer,
        # to catch the error consistently.
 AT_CHECK([aclocal], [], [], [ignore])
 AT_CHECK([automake --no-force --add-missing], [], [], [ignore])
 AT_CHECK([autoconf])
-AT_CHECK([set x `ls -1t newer configure`; test "$2" = newer ||
+AT_CHECK([test "`find configure -newer newer`" = "" ||
          { diff old-requests autom4te.cache/requests; exit 1; }])
 
 AT_CLEANUP