diff options
author | Eric Engestrom <[email protected]> | 2019-06-19 13:29:49 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-08-04 12:21:19 +0100 |
commit | a1da8eccbec042186848f5cadb9530fe3ec72820 (patch) | |
tree | a72b87cca7c07e2fb7f377d393b3c1ff43a8090f /docs | |
parent | 1361ab3c82df5b3eda50d6d2a5cc16c0ac8ffd2d (diff) |
docs: fix "empty array" meson syntax
On recent versions of Meson (0.47+) these are synonymous, but we still
support older versions than that, so let's use the correct syntax to
avoid confusing users of old Meson versions.
Signed-off-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/osmesa.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/osmesa.html b/docs/osmesa.html index cc806ca022a..7ad512e28e7 100644 --- a/docs/osmesa.html +++ b/docs/osmesa.html @@ -51,7 +51,7 @@ There are several examples of OSMesa in the mesa/demos repository. Configure and build Mesa with something like: <pre> -meson builddir -Dosmesa=gallium -Dgallium-drivers=swrast -Ddri-drivers= -Dvulkan-drivers= -Dprefix=$PWD/builddir/install +meson builddir -Dosmesa=gallium -Dgallium-drivers=swrast -Ddri-drivers=[] -Dvulkan-drivers=[] -Dprefix=$PWD/builddir/install ninja -C builddir install </pre> |