This is an automated email from the ASF dual-hosted git repository. pengzheng pushed a commit to branch hotfix/malformed_conanfile in repository https://gitbox.apache.org/repos/asf/celix.git
commit 4b28b554a7d801199afd29717907bd82959ed393 Author: PengZheng <[email protected]> AuthorDate: Mon Dec 12 17:22:21 2022 +0800 Fixed malformed conanfile.py. Fix wrong indentation and case error. --- conanfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conanfile.py b/conanfile.py index a4bb0e20..3658cfea 100644 --- a/conanfile.py +++ b/conanfile.py @@ -163,9 +163,9 @@ class CelixConan(ConanFile): if opt.startswith('build_'): setattr(self.options, opt, True) if not self.options.celix_cxx14: - self.options.celix_cxx17 = false + self.options.celix_cxx17 = False if not self.options.celix_cxx17: - self.options.build_cxx_remote_service_admin = False + self.options.build_cxx_remote_service_admin = False self.options.build_promises = False self.options.build_pushstreams = False if not self.options.build_cxx_remote_service_admin:
