summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTobias Nygren <tnn@NetBSD.org>2015-04-17 20:18:48 +0200
committerMatt Turner <mattst88@gmail.com>2015-04-17 12:04:21 -0700
commit52e4e4712f0da7e7e1d1164d9487f2d38f80c441 (patch)
treeebc104842273b70297669c4a3e31a93b77c607a5 /configure.ac
parent79010c9a531f45d2b6740ac26f4b04c169f5dc7a (diff)
configure.ac: fix bashism
Reviewed-by: Matt Turner <mattst88@gmail.com> Signed-off-by: Tobias Nygren <tnn@NetBSD.org>
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 6ccf3b45f9..325b936cda 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