[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] Autom4te: don't de-duplicate 'verb' and 'fatal' output
From: |
Pavel Raiskup |
Subject: |
[PATCH] Autom4te: don't de-duplicate 'verb' and 'fatal' output |
Date: |
Mon, 19 Jan 2015 16:42:54 +0100 |
This commit was proposed to not hide the second 'aclocal' run
during 'autoreconf -vfi'. Similar patch applied in GNU Automake
as commit fe3850.
* lib/Autom4te/ChannelDefs.pm: Set 'uniq_part' to UP_NONE for
'verb' and 'fatal' channel.
---
lib/Autom4te/ChannelDefs.pm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/lib/Autom4te/ChannelDefs.pm b/lib/Autom4te/ChannelDefs.pm
index 7fe6c9d..fb1782a 100644
--- a/lib/Autom4te/ChannelDefs.pm
+++ b/lib/Autom4te/ChannelDefs.pm
@@ -134,7 +134,7 @@ Informative messages.
# Do not forget to update &usage and the manual
# if you add or change a warning channel.
-register_channel 'fatal', type => 'fatal', ordered => 0;
+register_channel 'fatal', type => 'fatal', uniq_part => UP_NONE, ordered => 0;
register_channel 'error', type => 'error';
register_channel 'error-gnu', type => 'error';
register_channel 'error-gnu/warn', type => 'error';
@@ -154,7 +154,8 @@ register_channel 'portability', type => 'warning', silent
=> 1;
register_channel 'syntax', type => 'warning';
register_channel 'unsupported', type => 'warning';
-register_channel 'verb', type => 'debug', silent => 1, ordered => 0;
+register_channel 'verb', type => 'debug', silent => 1, uniq_part => UP_NONE,
+ ordered => 0;
register_channel 'note', type => 'debug', silent => 0;
=head2 FUNCTIONS
--
2.1.0
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [PATCH] Autom4te: don't de-duplicate 'verb' and 'fatal' output,
Pavel Raiskup <=