From: Eric Engestrom Date: Wed, 19 Jun 2019 12:29:49 +0000 (+0100) Subject: docs: fix "empty array" meson syntax X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a1da8eccbec042186848f5cadb9530fe3ec72820;p=mesa.git 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 --- 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:
-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