summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2007-05-23 17:52:23 +0100
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2007-05-23 17:52:23 +0100
commitf949be5176b4092f1a65daa2d486b87af4e8b2c8 (patch)
tree40e875494b035b6ad2a7a1f8e8db4e836237193e /m4
parent9c5950b73129a2a4d3e0ae2e81737845277971cb (diff)
downloadxine-lib-f949be5176b4092f1a65daa2d486b87af4e8b2c8.tar.gz
xine-lib-f949be5176b4092f1a65daa2d486b87af4e8b2c8.tar.bz2
Fix reversed version comparison.
Diffstat (limited to 'm4')
-rw-r--r--m4/xine.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/xine.m4 b/m4/xine.m4
index 9aac9da6a..336a2d7d2 100644
--- a/m4/xine.m4
+++ b/m4/xine.m4
@@ -35,7 +35,7 @@ AC_DEFUN([_XINE_VERSION_CHECK], [
required_version_parsed=_XINE_VERSION_PARSE([$required_version])
actual_version=ifelse([$2], , [0.0.0], [$2])
actual_version_parsed=_XINE_VERSION_PARSE([$actual_version])
- if test $required_version_parsed -ge $actual_version_parsed; then
+ if test $required_version_parsed -le $actual_version_parsed; then
ifelse([$3], , [:], [$3])
else
ifelse([$4], , [:], [$4])