diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2020-11-17 12:36:15 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-01-02 21:03:36 +0100 |
commit | a0fbbb6eb8b52b88e1756814dc661edd747ec481 (patch) | |
tree | 93dff10161d70e827a1ff11a56409aca5b3c8546 /meson.build | |
parent | 0dbce6efb5ff2e7113734d3a0cabbf87fc56feec (diff) |
meson: use pkg-config method for libudev
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 022272f4cf..0e70fe7a89 100644 --- a/meson.build +++ b/meson.build @@ -403,6 +403,7 @@ endif libudev = not_found if targetos == 'linux' and (have_system or have_tools) libudev = dependency('libudev', + method: 'pkg-config', required: get_option('libudev'), static: enable_static) endif |