diff options
author | Iñigo Martínez <inigomartinez@gmail.com> | 2021-11-05 12:45:56 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-11-08 09:28:55 +0000 |
commit | ec2e5403f14892047f391f63982bf5e4b30438c2 (patch) | |
tree | c5d8a6411f616de2d35ebdef6b37a93f922d6bc8 /test | |
parent | 7a7bc2e44409a1b07c745fc373c071ed0610c6c9 (diff) |
build,meson: Make feature options boolean
Different options are set as `feature`, also every possible plugin,
but this may cause confusion.
All options set as `feature` but plugins have been made `boolean` to
avoid further confusions.
`help2man` is also installed in the CI image because is required to
build different libraries.
Diffstat (limited to 'test')
-rw-r--r-- | test/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/meson.build b/test/meson.build index 3e66eed7..c77f29c8 100644 --- a/test/meson.build +++ b/test/meson.build @@ -8,7 +8,7 @@ test_units = { 'mmtty': libport_dep, } -if gudev_dep.found() +if enable_udev test_units += {'lsudev': gudev_dep} endif |