From bce4ab675c9db91b0df79d0a0db9ccbe96f1dc0d Mon Sep 17 00:00:00 2001 From: Mario Limonciello Date: Wed, 18 Oct 2017 08:20:40 -0500 Subject: [PATCH] Don't run -enable-werror on anything but CI. Fixes fails to build from source on alpha and hppa (#278) --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 1ba3c631f..b53db44a6 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -17,7 +17,7 @@ option('enable-consolekit', type : 'boolean', value : true, description : 'enabl option('enable-dummy', type : 'boolean', value : false, description : 'enable the dummy device') option('enable-gpg', type : 'boolean', value : true, description : 'enable the GPG verification support') option('enable-pkcs7', type : 'boolean', value : true, description : 'enable the PKCS7 verification support') -option('enable-werror', type : 'boolean', value : true, description : 'build with -Werror (only for CI!)') +option('enable-werror', type : 'boolean', value : false, description : 'build with -Werror (only for CI!)') option('with-bootdir', type : 'string', value : '/boot/efi', description : 'Directory for EFI system partition') option('with-systemdunitdir', type: 'string', value: '', description: 'Directory for systemd units') option('with-udevdir', type: 'string', value: '', description: 'Directory for udev rules')