summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Engestrom <eric.engestrom@imgtec.com>2018-03-20 14:54:45 +0000
committerEric Engestrom <eric.engestrom@imgtec.com>2018-03-20 18:19:50 +0000
commitedaca475e8b21da95ffee11b7287bc976ad31d49 (patch)
tree0051fe72645196ca33cd245b5ad0a4bb3b07806a
parent56f6d3d48d405024802fa1e52a80f8918fba7fc5 (diff)
meson: move line to allow using `config` earlier
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index ade90be1..ddcd25ff 100644
--- a/meson.build
+++ b/meson.build
@@ -29,12 +29,12 @@ project(
pkg = import('pkgconfig')
+config = configuration_data()
+
with_udev = get_option('udev')
with_freedreno_kgsl = get_option('freedreno-kgsl')
with_install_tests = get_option('install-test-programs')
-config = configuration_data()
-
if ['freebsd', 'dragonfly', 'netbsd'].contains(host_machine.system())
dep_pthread_stubs = dependency('pthread-stubs', version : '>= 0.4')
else