On Sun, Apr 08, 2018 at 05:13:29PM -0700, Jason Ekstrand wrote: > Please send your patches to the mailing list, not bugzilla. > > On April 8, 2018 14:20:25 sylvain.bertr...@gmail.com wrote: > > > Hi, > > > > I detected 2 bash-isms in configure.ac. > > > > 2 "one-liner" "trivial" patches are provided on the bugzilla > > https://bugs.freedesktop.org/show_bug.cgi?id=105943 > > > > regards, > > > > -- > > Sylvain > > _______________________________________________ > > mesa-dev mailing list > > mesa-dev@lists.freedesktop.org > > https://lists.freedesktop.org/mailman/listinfo/mesa-dev
--- configure.ac +++ configure.ac @@ -1856,7 +1856,7 @@ 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
--- configure.ac +++ configure.ac @@ -2854,7 +2854,7 @@ 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
_______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev