From: ayin Date: Thu, 26 Jul 2007 17:41:46 +0000 (+0000) Subject: Fix test expression. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=3b8548d7375e12c023e8e2678a279e45b40e7b24;p=dana%2Furxvt.git Fix test expression. --- 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