]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* config/ltmain.m4sh (func_mode_link): Reword double negation in
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sat, 12 Mar 2005 08:43:12 +0000 (08:43 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sat, 12 Mar 2005 08:43:12 +0000 (08:43 +0000)
error message.  Reported by Jesper Louis Andersen <jlouis@mongers.org>.

ChangeLog
config/ltmain.m4sh

index 622d6fcad3af3f46a3528cf4d923017b29e22d26..1d2fdb47eecb5664b71c4a9cca8e60487ff1d8ba 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-03-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
+       * config/ltmain.m4sh (func_mode_link): Reword double negation in
+       error message.  Reported by Jesper Louis Andersen <jlouis@mongers.org>.
+
        * doc/libtool.texi: Replace wicked whiches by thats or other
        better-sounding constructs.
 
index 61dec2a457f64c7b876684d0728bb128c031a4ae..3c8ad17f1a5e1eb89729e21c4782d3e1a9d461ad 100644 (file)
@@ -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