diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2021-06-03 11:15:26 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-06-25 10:54:10 +0200 |
commit | 05e391ae4056e122fd78b694607ccd2e5a943dab (patch) | |
tree | 2253a3a96e14bc4e7770a2df9ef7695df4050b7a /authz/meson.build | |
parent | ba7ed407e67589167ef582ac1f17a38f09fbd327 (diff) | |
download | qemu-05e391ae4056e122fd78b694607ccd2e5a943dab.zip qemu-05e391ae4056e122fd78b694607ccd2e5a943dab.tar.gz qemu-05e391ae4056e122fd78b694607ccd2e5a943dab.tar.bz2 |
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/meson.build')
-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 88fa776..42a1ec0 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')) |