diff options
author | Philippe Mathieu-Daudé | 2020-10-06 14:56:01 +0200 |
---|---|---|
committer | Paolo Bonzini | 2020-10-12 17:50:20 +0200 |
commit | 555678917697b6bef70e2d07c8a19d199a53b592 (patch) | |
tree | 91e53ec62566ae46de4736fcf3d4384780f61f93 /authz | |
parent | crypto: Move the creation of the library to the main meson.build (diff) | |
download | qemu-555678917697b6bef70e2d07c8a19d199a53b592.tar.gz qemu-555678917697b6bef70e2d07c8a19d199a53b592.tar.xz qemu-555678917697b6bef70e2d07c8a19d199a53b592.zip |
authz: Move the creation of the library to the main meson.build
Be consistent creating all the libraries in the main meson.build file.
Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20201006125602.2311423-9-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'authz')
-rw-r--r-- | authz/meson.build | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/authz/meson.build b/authz/meson.build index 516d71f2e2..88fa7769cb 100644 --- a/authz/meson.build +++ b/authz/meson.build @@ -1,4 +1,3 @@ -authz_ss = ss.source_set() authz_ss.add(genh) authz_ss.add(files( 'base.c', @@ -8,12 +7,3 @@ authz_ss.add(files( )) authz_ss.add(when: ['CONFIG_AUTH_PAM', pam], if_true: files('pamacct.c')) - -authz_ss = authz_ss.apply(config_host, strict: false) -libauthz = static_library('authz', authz_ss.sources() + genh, - dependencies: [authz_ss.dependencies()], - name_suffix: 'fa', - build_by_default: false) - -authz = declare_dependency(link_whole: libauthz, - dependencies: qom) |