From 4b32bbc8201730ab4dd5f56868caa0e9982444de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1igo=20Mart=C3=ADnez?= Date: Tue, 16 Oct 2018 07:31:56 +0200 Subject: build: meson: Remove polkit_dir option meson is able to get variables defined in pkg-config files such as directory paths. PolicyKit defines in its pkg-config file the path to the directory where `policy` files are present. This removes the `polkit_dir` option to ease the move to start using those variables. The `polkit` variable has also been converted to boolean. Fedora spec script has also been updated accordingly. --- meson.build | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 1b3d27ef0e..8055e31292 100644 --- a/meson.build +++ b/meson.build @@ -462,9 +462,7 @@ endif config_h.set10('WITH_JSON_VALIDATION', enable_json_validation) # polkit -polkit = get_option('polkit') -enable_polkit = (polkit != 'no') - +enable_polkit = get_option('polkit') if enable_polkit polkit_dir = get_option('polkit_dir') if polkit_dir == '' -- cgit v1.2.1