From: Dylan Baker Date: Tue, 17 Oct 2017 21:44:15 +0000 (-0700) Subject: meson: turn on pl111 not vc4 when pl111 driver specificed X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fbf39fd7c33d56271d79bdbe039605588c8d84db;p=mesa.git meson: turn on pl111 not vc4 when pl111 driver specificed Reviewed-by: Eric Anholt fixes: 1918c9b1627d5403 ("meson: Add support for the pl111 driver.") Signed-off-by: Dylan Baker --- diff --git a/meson.build b/meson.build index 5c42102e12d..33121600d0c 100644 --- a/meson.build +++ b/meson.build @@ -100,7 +100,7 @@ with_gallium_vc5 = false _drivers = get_option('gallium-drivers') if _drivers != '' _split = _drivers.split(',') - with_gallium_vc4 = _split.contains('pl111') + with_gallium_pl111 = _split.contains('pl111') with_gallium_radeonsi = _split.contains('radeonsi') with_gallium_nouveau = _split.contains('nouveau') with_gallium_softpipe = _split.contains('swrast')