* lib/Automake/Rule.pm (define): Merge two warnings that belong together, by setting the 'partial' flag for the first one.
Signed-off-by: Ralf Wildenhues <ralf.wildenh...@gmx.de> --- This is just a preparation patch, so we don't prepend the second part of the message. Cheers, Ralf ChangeLog | 4 ++++ lib/Automake/Rule.pm | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 19b7772..9a0b332 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-04-11 Ralf Wildenhues <ralf.wildenh...@gmx.de> + Fix connected warnings about obsolete exeext override. + * lib/Automake/Rule.pm (define): Merge two warnings that belong + together, by setting the 'partial' flag for the first one. + Fix per-Makefile.am setting of -Werror. Before this patch, 'AUTOMAKE_OPTIONS = -Werror' in one Makefile.am would carry over to other Makefile.am files diff --git a/lib/Automake/Rule.pm b/lib/Automake/Rule.pm index 68b3ea5..d7e7105 100644 --- a/lib/Automake/Rule.pm +++ b/lib/Automake/Rule.pm @@ -1,4 +1,5 @@ -# Copyright (C) 2003, 2004, 2006, 2007 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2006, 2007, 2010 Free Software Foundation, +# Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -615,7 +616,8 @@ sub define ($$$$$) msg ('obsolete', $tdef->location, "deprecated feature: target `$noexe' overrides " . "`$noexe\$(EXEEXT)'\n" - . "change your target to read `$noexe\$(EXEEXT)'"); + . "change your target to read `$noexe\$(EXEEXT)'", + partial => 1); msg ('obsolete', $where, "target `$target' was defined here"); } # Don't `return ()' now, as this might hide target clashes -- 1.7.0.rc1.161.g90487