From a1f26161cf68e7a74fc83f0a605d16732637b5d7 Mon Sep 17 00:00:00 2001 From: Sertonix Date: Sun, 28 Jul 2024 02:10:48 +0200 Subject: meson: fix summary when svg support is disabled --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 69ff14e..677421b 100644 --- a/meson.build +++ b/meson.build @@ -169,7 +169,7 @@ summary( 'JPEG support': jpg.found(), 'JPEG XL support': jxl.found(), 'WebP support': webp.found(), - 'SVG support': svg_lib, + 'SVG support': have_svg ? svg_lib : false, }, bool_yn: true ) -- cgit v1.2.3