diff options
author | Eric Anholt <[email protected]> | 2017-01-04 10:52:34 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2017-01-05 09:24:28 -0800 |
commit | dbe0dd11b9ec1e497277f15ce70506eff17ecdec (patch) | |
tree | cf2cfb4869bd022b0284255f559af1ea6d9375f6 | |
parent | 3477f67057f11b3608366f7096f4c6f1c57db509 (diff) |
configure: Fix another bashism.
Reviewed-by: Matt Turner <[email protected]>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 799f5ebda02..d1ffb57f57e 100644 --- a/configure.ac +++ b/configure.ac @@ -2382,7 +2382,7 @@ dnl dnl Gallium helper functions dnl gallium_require_llvm() { - if test "x$enable_gallium_llvm" == "xyes"; then + if test "x$enable_gallium_llvm" = "xyes"; then llvm_check_version_for $LLVM_REQUIRED_GALLIUM "gallium" else AC_MSG_ERROR([--enable-gallium-llvm is required when building $1]) |