From: Ralf Wildenhues Date: Sat, 12 Mar 2005 08:43:12 +0000 (+0000) Subject: * config/ltmain.m4sh (func_mode_link): Reword double negation in X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbd7ca69492a4959508b22244ca8f37e84455e41;p=thirdparty%2Flibtool.git * config/ltmain.m4sh (func_mode_link): Reword double negation in error message. Reported by Jesper Louis Andersen . --- diff --git a/ChangeLog b/ChangeLog index 622d6fcad..1d2fdb47e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2005-03-12 Ralf Wildenhues + * config/ltmain.m4sh (func_mode_link): Reword double negation in + error message. Reported by Jesper Louis Andersen . + * doc/libtool.texi: Replace wicked whiches by thats or other better-sounding constructs. diff --git a/config/ltmain.m4sh b/config/ltmain.m4sh index 61dec2a45..3c8ad17f1 100644 --- a/config/ltmain.m4sh +++ b/config/ltmain.m4sh @@ -4274,7 +4274,7 @@ func_mode_link () case $current in 0|[[1-9]]|[[1-9]][[0-9]]|[[1-9]][[0-9]][[0-9]]|[[1-9]][[0-9]][[0-9]][[0-9]]|[[1-9]][[0-9]][[0-9]][[0-9]][[0-9]]) ;; *) - func_error "CURRENT \`$current' is not a nonnegative integer" + func_error "CURRENT \`$current' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac @@ -4282,7 +4282,7 @@ func_mode_link () case $revision in 0|[[1-9]]|[[1-9]][[0-9]]|[[1-9]][[0-9]][[0-9]]|[[1-9]][[0-9]][[0-9]][[0-9]]|[[1-9]][[0-9]][[0-9]][[0-9]][[0-9]]) ;; *) - func_error "REVISION \`$revision' is not a nonnegative integer" + func_error "REVISION \`$revision' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac @@ -4290,7 +4290,7 @@ func_mode_link () case $age in 0|[[1-9]]|[[1-9]][[0-9]]|[[1-9]][[0-9]][[0-9]]|[[1-9]][[0-9]][[0-9]][[0-9]]|[[1-9]][[0-9]][[0-9]][[0-9]][[0-9]]) ;; *) - func_error "AGE \`$age' is not a nonnegative integer" + func_error "AGE \`$age' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac