* config/ltmain.m4sh (func_mode_link): Reword double negation in

error message.  Reported by Jesper Louis Andersen <jlouis@mongers.org>.
This commit is contained in:
Ralf Wildenhues 2005-03-12 08:42:18 +00:00
parent 27bdc11a6e
commit c523f9b268
2 changed files with 6 additions and 3 deletions

View File

@ -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>.
* bootstrap: really remove bogus files Makefile tests/Makefile.
* doc/libtool.texi: Replace wicked whiches by thats or other

View File

@ -4309,7 +4309,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
@ -4317,7 +4317,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
@ -4325,7 +4325,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