From 3b8548d7375e12c023e8e2678a279e45b40e7b24 Mon Sep 17 00:00:00 2001 From: ayin Date: Thu, 26 Jul 2007 17:41:46 +0000 Subject: [PATCH] Fix test expression. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 98a1910d..be096682 100644 --- a/configure.ac +++ b/configure.ac @@ -479,7 +479,7 @@ if test x$support_afterimage = xyes; then if test "x$AFTERIMAGE_LIBS" != "x"; then libai_ver_major=`echo $AFTERIMAGE_VERSION | $AWK -F . '{print $1}'` libai_ver_minor=`echo $AFTERIMAGE_VERSION | $AWK -F . '{print $2}'` - if test "$libai_ver_major -gt 1 -o ($libai_ver_major -eq 1 -a $libai_ver_minor -ge 15)"; then + if test $libai_ver_major -gt 1 -o \( $libai_ver_major -eq 1 -a $libai_ver_minor -ge 15 \); then support_afterimage=yes; fi fi -- 2.34.1