diff options
author | Maya Rashish <[email protected]> | 2019-01-10 16:18:48 +0200 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2019-02-25 13:26:36 -0800 |
commit | 67162ad12f31614a4e67610e07bfea460957393f (patch) | |
tree | 22223a168ecfec7cc970931ab2a6779862344f52 /configure.ac | |
parent | a03101c717846f2f0d548dc5c713528329234e6d (diff) |
configure: fix test portability
From the bash manual:
string1 == string2
string1 = string2
True if the strings are equal. = should be used with the test
command for POSIX conformance.
(cherry picked from commit 021c4961356c4b56b35d34b566e6f5f87d21fe34)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index d169223094f..1ef68fe68e6 100644 --- a/configure.ac +++ b/configure.ac @@ -1922,7 +1922,7 @@ if test x"$enable_dri3" = xyes; then dri3_modifier_modules="xcb-dri3 >= $XCBDRI3_MODIFIERS_REQUIRED xcb-present >= $XCBPRESENT_MODIFIERS_REQUIRED" PKG_CHECK_MODULES([XCB_DRI3_MODIFIERS], [$dri3_modifier_modules], [have_dri3_modifiers=yes], [have_dri3_modifiers=no]) - if test "x$have_dri3_modifiers" == xyes; then + if test "x$have_dri3_modifiers" = xyes; then DEFINES="$DEFINES -DHAVE_DRI3_MODIFIERS" fi fi @@ -2949,7 +2949,7 @@ if test "x$enable_llvm" = xyes; then dnl the LLVM library propagated in the Libs.private of the respective .pc dnl file which ensures complete dependency information when statically dnl linking. - if test "x$enable_glx" == xgallium-xlib; then + if test "x$enable_glx" = xgallium-xlib; then GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $LLVM_LIBS" fi if test "x$enable_gallium_osmesa" = xyes; then |