blob: d21ade8b39af6ed4d48987a26a85c6d93a53e288 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
--- libtool-1.3.5/ltmain.in.sopwith Thu Jul 13 17:34:43 2000
+++ libtool-1.3.5/ltmain.in Thu Jul 13 17:36:31 2000
@@ -1656,7 +1656,7 @@
# Check that each of the things are valid numbers.
case "$current" in
- 0 | [1-9] | [1-9][0-9]*) ;;
+ [0-9]*) ;;
*)
$echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2
$echo "$modename: \`$vinfo' is not valid version information" 1>&2
@@ -1665,7 +1665,7 @@
esac
case "$revision" in
- 0 | [1-9] | [1-9][0-9]*) ;;
+ [0-9]*) ;;
*)
$echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2
$echo "$modename: \`$vinfo' is not valid version information" 1>&2
@@ -1674,7 +1674,7 @@
esac
case "$age" in
- 0 | [1-9] | [1-9][0-9]*) ;;
+ [0-9]*) ;;
*)
$echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
$echo "$modename: \`$vinfo' is not valid version information" 1>&2
|