diff options
author | Robert Noland <rnoland@2hip.net> | 2009-04-15 12:06:19 -0500 |
---|---|---|
committer | Robert Noland <rnoland@2hip.net> | 2009-04-15 12:06:19 -0500 |
commit | b3e3154cce47add97f5561088036ce3b9e7dc937 (patch) | |
tree | 6d9f3e999aed474ba7f34fa4f3a7d37546f9a5f4 | |
parent | 74d27c8b5bac7c8d2ed02ba86e09bf09924ce05c (diff) |
One = is more than adequate here. Make is sh safe.
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 9263fc0c1..ef5062705 100644 --- a/configure.ac +++ b/configure.ac @@ -897,7 +897,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]) @@ -924,7 +924,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]) |