]> git.pld-linux.org Git - packages/libtool.git/blame - libtool-nonneg.patch
- new patches (fix x86_64, make restricted symbol exports work on Linux)
[packages/libtool.git] / libtool-nonneg.patch
CommitLineData
5cd1a3a8 1--- libtool-1.3.5/ltmain.in.sopwith Thu Jul 13 17:34:43 2000
2+++ libtool-1.3.5/ltmain.in Thu Jul 13 17:36:31 2000
3@@ -1656,7 +1656,7 @@
4
5 # Check that each of the things are valid numbers.
6 case "$current" in
7- 0 | [1-9] | [1-9][0-9]*) ;;
8+ [0-9]*) ;;
9 *)
10 $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2
11 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
12@@ -1665,7 +1665,7 @@
13 esac
14
15 case "$revision" in
16- 0 | [1-9] | [1-9][0-9]*) ;;
17+ [0-9]*) ;;
18 *)
19 $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2
20 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
21@@ -1674,7 +1674,7 @@
22 esac
23
24 case "$age" in
25- 0 | [1-9] | [1-9][0-9]*) ;;
26+ [0-9]*) ;;
27 *)
28 $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
29 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
This page took 0.033212 seconds and 4 git commands to generate.