diff options
author | Dylan Baker <[email protected]> | 2018-01-08 17:43:45 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-01-08 17:43:45 -0800 |
commit | 73ce7cb47406ec3e0fd56945dc66f7e258187630 (patch) | |
tree | e168968fb46961f62719cc29c3ee27ecd1a80148 | |
parent | 21bca27349e8e356c91cab8a20a034931002181b (diff) |
Meson: ensure variable defined
A gallium driver is undefined if passing -Dgallium-drivers=''
Fixes: e0b037d6979b2 ("meson: Build SWR driver")
Signed-off-by: Dylan Baker <[email protected]>
Acked-by: Jordan Justen <[email protected]>
Acked-by: Jason Ekstrand <[email protected]>
-rw-r--r-- | meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 1a1d3fd69b9..77e4e894b23 100644 --- a/meson.build +++ b/meson.build @@ -125,6 +125,7 @@ with_gallium_imx = false with_gallium_i915 = false with_gallium_svga = false with_gallium_virgl = false +with_gallium_swr = false _drivers = get_option('gallium-drivers') if _drivers == 'auto' if not ['darwin', 'windows'].contains(host_machine.system()) |