summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-08-07 18:10:53 +0200
committerLukáš Nykrýn <lnykryn@redhat.com>2019-05-03 12:50:30 +0200
commitfff862ce6f33acb6ce8dc422e0f53ec681ebed6d (patch)
tree4652f506480edc57c3d337e6a9a704a13ac48836 /meson.build
parent1a368abf7a3d72ecda504a69602b33b6869a485c (diff)
downloadsystemd-fff862ce6f33acb6ce8dc422e0f53ec681ebed6d.tar.gz
meson: drop duplicated condition
The generic check suffices for those four. (cherry picked from commit 6bd2bc8e16a6d515f8a21c47fd6b833d7fcfdd1c) Resolves: #1696224
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/meson.build b/meson.build
index 863e8eb399..f623bcf37d 100644
--- a/meson.build
+++ b/meson.build
@@ -3003,10 +3003,10 @@ foreach tuple : [
['blkid'],
['dbus'],
['glib'],
- ['nss-myhostname', conf.get('ENABLE_NSS_MYHOSTNAME') == 1],
- ['nss-mymachines', conf.get('ENABLE_NSS_MYMACHINES') == 1],
- ['nss-resolve', conf.get('ENABLE_NSS_RESOLVE') == 1],
- ['nss-systemd', conf.get('ENABLE_NSS_SYSTEMD') == 1],
+ ['nss-myhostname'],
+ ['nss-mymachines'],
+ ['nss-resolve'],
+ ['nss-systemd'],
['hwdb'],
['tpm'],
['man pages', want_man],