diff options
author | Robert Noland <rnoland@2hip.net> | 2009-04-15 12:06:19 -0500 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-07-26 13:56:57 -0700 |
commit | c838a03e891a6fcd2f7b71f727c1b93f7c26e7a7 (patch) | |
tree | 32f82b7ed55dc5557a6bcbf1968008e34ea663ce | |
parent | 68cb38bed65c49716104eeb345c4b1b85a4b15bc (diff) |
One = is more than adequate here. Make is sh safe.
(cherry picked from commit b3e3154cce47add97f5561088036ce3b9e7dc937)
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index d75c467be..e0e9b30cc 100644 --- a/configure.ac +++ b/configure.ac @@ -870,7 +870,7 @@ case "$DRI2,$HAVE_DRI2PROTO" in DRI2=yes ;; esac -AM_CONDITIONAL(DRI2, test "x$DRI2" == xyes) +AM_CONDITIONAL(DRI2, test "x$DRI2" = xyes) if test "x$DRI" = xyes || test "x$DRI2" = xyes; then PKG_CHECK_MODULES([LIBDRM], [libdrm >= 2.3.0]) @@ -897,7 +897,7 @@ if test "x$DRI2" = xyes; then DRI2_AIGLX=no fi fi -AM_CONDITIONAL(DRI2_AIGLX, test "x$DRI2_AIGLX" == xyes) +AM_CONDITIONAL(DRI2_AIGLX, test "x$DRI2_AIGLX" = xyes) AM_CONDITIONAL(XINERAMA, [test "x$XINERAMA" = xyes]) |