pyuno/Module_pyuno.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit 1caad5a5f7251423ca3ba8c0bbe9d2bceaf16603 Author: Xisco Fauli <[email protected]> AuthorDate: Thu Jan 23 12:28:58 2025 +0100 Commit: Xisco Fauli <[email protected]> CommitDate: Thu Jan 23 15:24:13 2025 +0100 pyuno: call target only with internal python Change ifeq ($(SYSTEM_PYTHON),) to ifneq ($(SYSTEM_PYTHON),TRUE) to make it more obvious Change-Id: Ie104a31ee4ac5858686af3836f3a04f2d7ea0336 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180625 Reviewed-by: Noel Grandin <[email protected]> Tested-by: Jenkins Reviewed-by: Xisco Fauli <[email protected]> diff --git a/pyuno/Module_pyuno.mk b/pyuno/Module_pyuno.mk index 849d17749d5a..804163ea4db0 100644 --- a/pyuno/Module_pyuno.mk +++ b/pyuno/Module_pyuno.mk @@ -34,7 +34,7 @@ $(eval $(call gb_Module_add_targets,pyuno,\ )) endif -ifeq ($(SYSTEM_PYTHON),) +ifneq ($(SYSTEM_PYTHON),TRUE) # python-core: python.sh on Unix ifneq ($(OS),WNT) @@ -44,8 +44,6 @@ $(eval $(call gb_Module_add_targets,pyuno,\ )) endif -endif # SYSTEM_PYTHON - $(eval $(call gb_Module_add_check_targets,pyuno, \ PythonTest_pyuno_pytests_testssl \ PythonTest_pyuno_pytests_testbz2 \ @@ -53,6 +51,8 @@ $(eval $(call gb_Module_add_check_targets,pyuno, \ PythonTest_pyuno_pytests_testsetuptools \ )) +endif # !SYSTEM_PYTHON + $(eval $(call gb_Module_add_subsequentcheck_targets,pyuno, \ PythonTest_pyuno_pytests_testcollections \ PythonTest_pyuno_pytests_insertremovecells \
