mirror of
git://git.sv.gnu.org/autoconf
synced 2025-02-11 13:51:04 +08:00
Ignore `make dist' changelogs in testsuite.log.
* lib/autotest/general.m4 (AT_INIT) <ChangeLogs>: Prune directories matching AT_PACKAGE_TARNAME-*. Signed-off-by: Eric Blake <ebb9@byu.net>
This commit is contained in:
parent
5b6f53e441
commit
32d3effc40
@ -1,5 +1,9 @@
|
||||
2007-10-18 Eric Blake <ebb9@byu.net>
|
||||
|
||||
Ignore `make dist' changelogs in testsuite.log.
|
||||
* lib/autotest/general.m4 (AT_INIT) <ChangeLogs>: Prune
|
||||
directories matching AT_PACKAGE_TARNAME-*.
|
||||
|
||||
Fix AT_TESTED, AT_KEYWORDS.
|
||||
* lib/m4sugar/m4sugar.m4 (m4_append_uniq): Warn if separator
|
||||
occurs in string, as duplicates may be added.
|
||||
|
@ -744,11 +744,14 @@ AS_BOX(m4_defn([AT_TESTSUITE_NAME])[.])
|
||||
# Try to find a few ChangeLogs in case it might help determining the
|
||||
# exact version. Use the relative dir: if the top dir is a symlink,
|
||||
# find will not follow it (and options to follow the links are not
|
||||
# portable), which would result in no output here.
|
||||
# portable), which would result in no output here. Prune directories
|
||||
# matching the package tarname, since they tend to be leftovers from
|
||||
# `make dist' or `make distcheck' and contain redundant or stale logs.
|
||||
if test -n "$at_top_srcdir"; then
|
||||
AS_BOX([ChangeLogs.])
|
||||
echo
|
||||
for at_file in `find "$at_top_srcdir" -name ChangeLog -print`
|
||||
for at_file in `find "$at_top_srcdir" m4_ifdef([AT_PACKAGE_TARNAME],
|
||||
[-name "AT_PACKAGE_TARNAME-*" -prune -o ])-name ChangeLog -print`
|
||||
do
|
||||
AS_ECHO(["$as_me: $at_file:"])
|
||||
sed 's/^/| /;10q' $at_file
|
||||
|
Loading…
Reference in New Issue
Block a user