diff options
author | Dave Airlie <[email protected]> | 2016-10-07 09:27:36 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-10-07 09:28:03 +1000 |
commit | 5267124648d8382038ce35304c5a8a4fa5c5d2b7 (patch) | |
tree | 8aeeef7af1ac5bf46d8add7f048658ea691bceb1 /configure.ac | |
parent | 24815bd7b3b50d2e634b56ca607856ecf08ec4ee (diff) |
radv: fix configure.ac check
This should be positive test.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c8aa829a8ca..0c437a5cb00 100644 --- a/configure.ac +++ b/configure.ac @@ -2549,7 +2549,7 @@ if test -n "$with_gallium_drivers"; then done fi -if test "x$HAVE_RADEON_VULKAN" != "x0"; then +if test "x$HAVE_RADEON_VULKAN" = "xyes"; then radeon_llvm_check "radv" "3" "9" "0" fi |