From a1da8eccbec042186848f5cadb9530fe3ec72820 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Wed, 19 Jun 2019 13:29:49 +0100 Subject: [PATCH] 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 --- docs/osmesa.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/osmesa.html b/docs/osmesa.html index cc806ca..7ad512e 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
 
-- 2.7.4