summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorPeter Foley <pefoley2@pefoley.com>2014-09-23 21:55:13 -0400
committerMatúš Kukan <matus.kukan@collabora.com>2014-09-24 06:31:00 +0000
commit9416f4e8ab5fe9e1006bf8afd0b9d0ed2655a315 (patch)
tree7cd8150397273727df5761931b63ed4d196fe34d /solenv
parentff6a6940aafa2164c5f53b1d4c09dfe995b562b8 (diff)
Make PythonTests depend on the ExternalExecutable
This fixes builds on windows with fully-internal python where the package is built but the exe isn't in instdir when building a PythonTest. Change-Id: Iab1d330a36adf1c849635b990bfe5d31359bec2b Reviewed-on: https://gerrit.libreoffice.org/11618 Reviewed-by: Matúš Kukan <matus.kukan@collabora.com> Tested-by: Matúš Kukan <matus.kukan@collabora.com>
Diffstat (limited to 'solenv')
-rw-r--r--solenv/gbuild/PythonTest.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuild/PythonTest.mk b/solenv/gbuild/PythonTest.mk
index ce5f5ed0e564..c78a8964c171 100644
--- a/solenv/gbuild/PythonTest.mk
+++ b/solenv/gbuild/PythonTest.mk
@@ -15,7 +15,7 @@ gb_PythonTest_EXECUTABLE_GDB := $(gb_Python_INSTALLED_EXECUTABLE_GDB)
ifeq ($(OS),MACOSX)
gb_PythonTest_DEPS := $(call gb_GeneratedPackage_get_target,python3)
else
-gb_PythonTest_DEPS := $(call gb_Package_get_target,python3)
+gb_PythonTest_DEPS := $(call gb_ExternalExecutable_get_dependencies,python)
endif
gb_PythonTest_DEPS += $(if $(filter-out WNT,$(OS)),$(call gb_Package_get_target,python_shell))
else