diff mbox

[libdrm,2/3] meson: move line to allow using `config` earlier

Message ID 20180320153935.10079-2-eric.engestrom@imgtec.com (mailing list archive)
State New, archived
Headers show

Commit Message

Eric Engestrom March 20, 2018, 3:39 p.m. UTC
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
---
 meson.build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/meson.build b/meson.build
index ade90be1da9458b5d473..ddcd25ff0e428ce4a591 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