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 <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
This commit is contained in:
Xisco Fauli
2025-01-23 12:28:58 +01:00
parent 804da806ed
commit 1caad5a5f7

View File

@ -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 \