diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2010-04-25 18:26:14 +0200 |
---|---|---|
committer | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2010-04-25 20:30:05 +0200 |
commit | 83d7976fb25025797ed1271c68e5c8c148c40f91 (patch) | |
tree | a87418864d15d8c273f0a7158f89250bf5da5b70 /lib/Automake/Channels.pm | |
parent | a700fa3337c039e8a6dbae44b08a5180713e697a (diff) | |
download | automake-83d7976fb25025797ed1271c68e5c8c148c40f91.tar.gz |
Warning and error message formatting cleanups.
* aclocal.in (parse_arguments, main): Remove trailing period or
newline in error or warning messages, avoid capitalization of
the first word of a message.
* automake.in (check_user_variables, handle_languages)
(handle_ltlibraries, scan_aclocal_m4, scan_autoconf_config_files)
(scan_autoconf_files, cond_stack_if, require_file_internal)
(usage, generate_makefile, parse_arguments): Likewise.
* lib/Automake/ChannelDefs.pm (set_strictness): Likewise.
* lib/Automake/Configure_ac.pm (find_configure_ac): Likewise.
* lib/Automake/Options.pm (set_strictness): Likewise.
* lib/Automake/Rule.pm (define): Likewise.
* lib/Automake/Variable.pm (define, variables_dump): Likewise.
* tests/ltinstloc.test, tests/suffix11.test: Adjust expected
error message.
* lib/Automake/Channels.pm (setup_channel): Reword error message
to be the same as in msg.
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Diffstat (limited to 'lib/Automake/Channels.pm')
-rw-r--r-- | lib/Automake/Channels.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Automake/Channels.pm b/lib/Automake/Channels.pm index 1fb2f53ac..aeed4db66 100644 --- a/lib/Automake/Channels.pm +++ b/lib/Automake/Channels.pm @@ -680,7 +680,7 @@ Override the options of C<$channel> with those specified by C<%options>. sub setup_channel ($%) { my ($name, %opts) = @_; - confess "channel $name doesn't exist" unless exists $channels{$name}; + confess "unknown channel $name" unless exists $channels{$name}; _merge_options %{$channels{$name}}, %opts; } |