From: Kristian Lehmann Date: Mon, 26 Aug 2013 19:19:50 +0000 (+0200) Subject: Fixed and/or order mistake, resulting in compiling llvmpipe without llvm installed X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cec7b5c5bc300d4a415939bc6a913d441c687e47;p=mesa.git Fixed and/or order mistake, resulting in compiling llvmpipe without llvm installed Cc: 9.2 Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=68544 Reviewed-by: Matt Turner --- diff --git a/configure.ac b/configure.ac index 40e052c626a..e20a2289a69 100644 --- a/configure.ac +++ b/configure.ac @@ -1925,8 +1925,8 @@ AM_CONDITIONAL(NEED_GALLIUM_SOFTPIPE_DRIVER, test "x$HAVE_GALLIUM_SVGA" = xyes - "x$HAVE_GALLIUM_I915" = xyes -o \ "x$HAVE_GALLIUM_SOFTPIPE" = xyes) AM_CONDITIONAL(NEED_GALLIUM_LLVMPIPE_DRIVER, test "x$HAVE_GALLIUM_I915" = xyes -o \ - "x$HAVE_GALLIUM_SOFTPIPE" = xyes -a \ - "x$MESA_LLVM" = x1) + "x$HAVE_GALLIUM_SOFTPIPE" = xyes \ + && test "x$MESA_LLVM" = x1) if test "x$enable_gallium_loader" = xyes; then GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/null"