Hello, I ran into a test failure for "m4_warn (bad categories)". I
believe that this is just a typo introduced by commit b553b19. I
attached a patch that fixes the test failure. If I am wrong and the
change was intended just let me know and I can send my testsuite.log.
From da9480d4235ed42aabc9584674a0a874decc7317 Mon Sep 17 00:00:00 2001
From: Collin Funk <collin.fu...@gmail.com>
Date: Thu, 1 Feb 2024 03:40:45 -0800
Subject: [PATCH] Fix typo which causes test "m4_warn (bad categories)" to
fail.
* lib/Autom4te/ChannelDefs.pm (report_bad_channel): Fix warning
message so that it refers to autom4te instead of automake.
Copyright-paperwork-exempt: Yes
---
lib/Autom4te/Channels.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/Autom4te/Channels.pm b/lib/Autom4te/Channels.pm
index 73bca6e3..3104a294 100644
--- a/lib/Autom4te/Channels.pm
+++ b/lib/Autom4te/Channels.pm
@@ -689,7 +689,7 @@ sub report_bad_channel ($$)
# don't treat those cases as errors.
$report_as = 'obsolete';
$message = "use of $q_channel as a diagnostic category is obsolete\n";
- $message .= "(see automake --help for a list of valid categories)";
+ $message .= "(see autom4te --help for a list of valid categories)";
}
elsif ($channel eq 'none'
|| ($channel =~ /^no-/ && exists $channels{substr($channel, 3)}))
--
2.43.0.440.gb50a608ba2