build: Rename the 'enable-colord' option

Drop the 'enable-' prefix, to follow the naming best practices for Meson
configuration options.
This commit is contained in:
Emmanuele Bassi
2018-02-14 13:45:48 +00:00
parent d1a8ed0214
commit 2e7fef7d18
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
enable_colord = get_option('enable-colord')
enable_colord = get_option('colord')
if enable_colord != 'no'
want_colord = enable_colord == 'yes'
colord_dep = dependency('colord', version: '>= 0.1.9', required: want_colord)