From: Eric Blake Date: Thu, 19 Jun 2008 13:02:20 +0000 (-0600) Subject: Add comment explaining recent patch. X-Git-Tag: v2.63~68 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8eb89699993bbcb4d7f278ab8fece54f64e1334;p=thirdparty%2Fautoconf.git Add comment explaining recent patch. * lib/autotest/general.m4 (AT_INIT) : Explain choice of * vs. ? globbing. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index 3e7289319..065a75bc4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-06-19 Eric Blake + + Add comment explaining recent patch. + * lib/autotest/general.m4 (AT_INIT) : Explain choice + of * vs. ? globbing. + 2008-06-19 Ralf Wildenhues * lib/autoconf/status.m4 (_AC_OUTPUT_LINK): Do not warn when not diff --git a/lib/autotest/general.m4 b/lib/autotest/general.m4 index 3c983fc94..90fce9fb7 100644 --- a/lib/autotest/general.m4 +++ b/lib/autotest/general.m4 @@ -1166,6 +1166,7 @@ done # Wrap up the test suite with summary statistics. cd "$at_helper_dir" +# Use ?..???? when the list must remain sorted, the faster * otherwise. at_pass_list=`for f in */pass; do echo $f; done | sed '/\*/d; s,/pass,,'` at_skip_list=`for f in */skip; do echo $f; done | sed '/\*/d; s,/skip,,'` at_xfail_list=`for f in */xfail; do echo $f; done | sed '/\*/d; s,/xfail,,'`