diff options
author | David Tardon <dtardon@redhat.com> | 2014-04-18 22:02:23 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-04-18 22:03:20 +0200 |
commit | a72fb7f912fcf4e6ca5ef17406c6b08aac2c1f73 (patch) | |
tree | 8cbd99afdc69eea10622c3ee853851922beae036 /solenv | |
parent | 859e42a98fd73c84edc20c87868d50747a2da123 (diff) |
don't bother with _for_build here
The tests cannot be run on cross-compilation anyway.
Change-Id: I89afe30067e3f06fe090e529e6072c79ea696038
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/PythonTest.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/solenv/gbuild/PythonTest.mk b/solenv/gbuild/PythonTest.mk index 8c346a5664cc..c0a1f2f1271f 100644 --- a/solenv/gbuild/PythonTest.mk +++ b/solenv/gbuild/PythonTest.mk @@ -13,11 +13,11 @@ ifeq ($(SYSTEM_PYTHON),) gb_PythonTest_EXECUTABLE := $(gb_Python_INSTALLED_EXECUTABLE) gb_PythonTest_EXECUTABLE_GDB := $(gb_Python_INSTALLED_EXECUTABLE_GDB) ifeq ($(OS),MACOSX) -gb_PythonTest_DEPS := $(call gb_GeneratedPackage_get_target_for_build,python3) +gb_PythonTest_DEPS := $(call gb_GeneratedPackage_get_target,python3) else -gb_PythonTest_DEPS := $(call gb_Package_get_target_for_build,python3) +gb_PythonTest_DEPS := $(call gb_Package_get_target,python3) endif -gb_PythonTest_DEPS += $(if $(filter-out WNT,$(OS)),$(call gb_Package_get_target_for_build,python_shell)) +gb_PythonTest_DEPS += $(if $(filter-out WNT,$(OS)),$(call gb_Package_get_target,python_shell)) else gb_PythonTest_EXECUTABLE := $(PYTHON_FOR_BUILD) gb_PythonTest_EXECUTABLE_GDB := $(PYTHON_FOR_BUILD) |