configure.ac: fix bashism

Reviewed-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Tobias Nygren <tnn@NetBSD.org>
This commit is contained in:
Tobias Nygren 2015-04-17 20:18:48 +02:00 committed by Matt Turner
parent 79010c9a53
commit 52e4e4712f
1 changed files with 1 additions and 1 deletions

View File

@ -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