diff options
author | Paolo Bonzini | 2021-06-03 11:15:26 +0200 |
---|---|---|
committer | Paolo Bonzini | 2021-06-25 10:54:10 +0200 |
commit | 05e391ae4056e122fd78b694607ccd2e5a943dab (patch) | |
tree | 2253a3a96e14bc4e7770a2df9ef7695df4050b7a /authz | |
parent | configure, meson: convert libtasn1 detection to meson (diff) | |
download | qemu-05e391ae4056e122fd78b694607ccd2e5a943dab.tar.gz qemu-05e391ae4056e122fd78b694607ccd2e5a943dab.tar.xz qemu-05e391ae4056e122fd78b694607ccd2e5a943dab.zip |
configure, meson: convert pam detection to meson
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'authz')
-rw-r--r-- | authz/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/authz/meson.build b/authz/meson.build index 88fa7769cb..42a1ec0ff6 100644 --- a/authz/meson.build +++ b/authz/meson.build @@ -6,4 +6,4 @@ authz_ss.add(files( 'simple.c', )) -authz_ss.add(when: ['CONFIG_AUTH_PAM', pam], if_true: files('pamacct.c')) +authz_ss.add(when: pam, if_true: files('pamacct.c')) |