aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfleger <florian6.leger@laposte.net>2011-03-12 18:23:22 +0100
committerfleger <florian6.leger@laposte.net>2011-03-12 18:23:22 +0100
commitaab6f57b17b97bf65860d6ae86ed4a27f00c2627 (patch)
tree1be8b5cb53e14531032f8fbb7920e82846edf168
parentcb62c7f4de366584ae2fc22e9799ae202e436980 (diff)
Fixed yasm version check
-rw-r--r--configure.ac6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 074c37a..721cb0d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -55,7 +55,11 @@ else
if test "$yamajor" -ge "1" ; then
if test "$yamajor" -eq "1" ; then
if test "$yaminor" -ge "0" ; then
- if test "$yamini" -ge "1"; then
+ if test "$yaminor" -eq "0"; then
+ if test "$yamini" -ge "1"; then
+ has_yasm=true
+ fi
+ else
has_yasm=true
fi
fi