From 8f0d67779c4f8865ac4a42fe5113408eace3e797 Mon Sep 17 00:00:00 2001 From: Jehan Date: Wed, 26 Jan 2022 02:55:27 +0100 Subject: [PATCH] meson: rename -Dvec-icons to -Dvector-icons. Should we really be that stingy for letters that we don't want to use full words?! :-D Let's have clear option names. --- meson.build | 2 +- meson_options.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 65f10f14c7..3927d7f933 100644 --- a/meson.build +++ b/meson.build @@ -1019,7 +1019,7 @@ if get_option('g-ir-doc') endif # Check for vector icons -have_vector_icons = get_option('vec-icons') +have_vector_icons = get_option('vector-icons') if have_vector_icons # shared-mime-info is needed to correctly detect SVG files # (except on Windows, apparently). diff --git a/meson_options.txt b/meson_options.txt index 162e059cc6..31306509f4 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -57,7 +57,7 @@ option('gi-docgen', type: 'feature', value: 'auto', description: 'Build option('g-ir-doc', type: 'boolean', value: false, description: 'Build developer documentation for introspected API') option('linux-input', type: 'feature', value: 'auto', description: 'Linux input event controller module') -option('vec-icons', type: 'boolean', value: true, description: 'Use vector icons rather than raster ones') +option('vector-icons', type: 'boolean', value: true, description: 'Use vector icons rather than raster ones') option('vala-plugins', type: 'feature', value: 'auto', description: 'Build VAPI and Vala plugins')