diff options
author | Sertonix <sertonix@posteo.net> | 2024-07-28 02:10:48 +0200 |
---|---|---|
committer | Sertonix <sertonix@posteo.net> | 2024-07-28 02:10:48 +0200 |
commit | a1f26161cf68e7a74fc83f0a605d16732637b5d7 (patch) | |
tree | f24d1d3c230e17dbcfb92c3e83eaf96d4ac12c73 | |
parent | d91789cf42d88852709bfc62fab5f242a36fdf84 (diff) | |
download | wbg-a1f26161cf68e7a74fc83f0a605d16732637b5d7.tar.gz |
meson: fix summary when svg support is disabled
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
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 ) |