From 061541ea44b75a80824ec6777a51ebcbd6f38172 Mon Sep 17 00:00:00 2001 From: Iikka Eklund Date: Tue, 22 Mar 2022 11:29:55 +0200 Subject: [PATCH] Conan: Fix typo in recipe Fix indentation of a function declaration. Pick-to: 6.3 6.3.0 Change-Id: Ib2aed12f2549e4b0ee5ee21a59c2c7b9db726a7e Reviewed-by: Toni Saario --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 176f5d4c4f9..737dc5921be 100644 --- a/conanfile.py +++ b/conanfile.py @@ -568,7 +568,7 @@ class QtBase(ConanFile): _filter = self._shared.filter_cmake_args_for_package_id self.info.options.cmake_args_qtbase = _filter(self.info.options.cmake_args_qtbase) - def filter_package_id_for_android(self) -> None: + def filter_package_id_for_android(self) -> None: # Instead of using Android NDK path as the option value (package_id) we parse the # actual version number and use that as the option value. android_ndk = self.options.get_safe("android_ndk")