From edd26e342a181882e85f31c45150aa9564716937 Mon Sep 17 00:00:00 2001 From: Shyamnath Premnadh Date: Wed, 29 Nov 2023 17:12:24 +0100 Subject: [PATCH] Remove redundant append into WHITELIST_PATTERNS - pyconfig.h was appended twice into WHITELIST_PATTERNS - Regression from commit a636b88 --- pythonforandroid/bootstraps/common/build/build.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pythonforandroid/bootstraps/common/build/build.py b/pythonforandroid/bootstraps/common/build/build.py index 59c38b609c..eced5886c8 100644 --- a/pythonforandroid/bootstraps/common/build/build.py +++ b/pythonforandroid/bootstraps/common/build/build.py @@ -1052,6 +1052,4 @@ def _read_configuration(): if __name__ == "__main__": - if get_bootstrap_name() in ('sdl2', 'webview', 'service_only'): - WHITELIST_PATTERNS.append('pyconfig.h') parse_args_and_make_package()