From d78b8a6fbea2d32f594e750bca6dd590f7e691d7 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Fri, 3 Apr 2020 18:02:36 +0100 Subject: build: Remove redundant comment from meson_options.txt Signed-off-by: Philip Withnall --- meson_options.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index a5cae5fc..924223a5 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -18,7 +18,6 @@ option('oauth1', value: 'disabled', description: 'enable OAuth 1.0 support (deprecated)') -# Enable always building tests (default: yes) option('always_build_tests', type: 'boolean', value: true, -- cgit v1.2.1 From b1756860a964dacf02bea9144962578c3f13355f Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Fri, 3 Apr 2020 18:02:50 +0100 Subject: =?UTF-8?q?build:=20Don=E2=80=99t=20enable=20installed=20tests=20b?= =?UTF-8?q?y=20default?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Conventionally, they’re not enabled by default. Signed-off-by: Philip Withnall --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 924223a5..b1ba2df1 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -25,7 +25,7 @@ option('always_build_tests', option('installed_tests', type: 'boolean', - value: true, + value: false, description: 'Install test programs (default: false)') option('man', -- cgit v1.2.1 From c0ed9f6c0b6800e7d35812b0015fea7c8863f2b1 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Fri, 3 Apr 2020 18:03:32 +0100 Subject: build: Remove default values from descriptions in meson_options.txt People should be able to get these from meson itself, or by reading `meson_options.txt`. Putting them in the description strings is just going to lead to that going out of sync with the actual options. Spotted by Debarshi Ray in !23. Signed-off-by: Philip Withnall --- meson_options.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index b1ba2df1..19bfd95c 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -21,12 +21,12 @@ option('oauth1', option('always_build_tests', type: 'boolean', value: true, - description: 'Enable always building tests (default: true)') + description: 'Enable always building tests') option('installed_tests', type: 'boolean', value: false, - description: 'Install test programs (default: false)') + description: 'Install test programs') option('man', type: 'boolean', @@ -36,7 +36,7 @@ option('man', option('gtk_doc', type: 'boolean', value: false, - description: 'use gtk-doc to build documentation (default: false)') + description: 'use gtk-doc to build documentation') option('introspection', type: 'boolean', -- cgit v1.2.1