aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorTobias Nygren <[email protected]>2015-04-17 20:18:48 +0200
committerMatt Turner <[email protected]>2015-04-17 12:04:21 -0700
commit52e4e4712f0da7e7e1d1164d9487f2d38f80c441 (patch)
treeebc104842273b70297669c4a3e31a93b77c607a5 /configure.ac
parent79010c9a531f45d2b6740ac26f4b04c169f5dc7a (diff)
configure.ac: fix bashism
Reviewed-by: Matt Turner <[email protected]> Signed-off-by: Tobias Nygren <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 6ccf3b45f9b..325b936cdab 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1641,7 +1641,7 @@ if test "x$enable_nine" = xyes; then
if ! echo "$with_gallium_drivers" | grep -q 'swrast'; then
AC_MSG_ERROR([nine requires the gallium swrast driver])
fi
- if test "x$with_gallium_drivers" == xswrast; then
+ if test "x$with_gallium_drivers" = xswrast; then
AC_MSG_ERROR([nine requires at least one non-swrast gallium driver])
fi
if test "x$enable_dri3" = xno; then