diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-09-20 17:16:20 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-09-20 17:19:36 +0200 |
commit | 0d3bcf5763124b6f94223f7223de18f1faffc72d (patch) | |
tree | 58171eb906b969b7d29d56abd9bfd3e1f3545f21 | |
parent | 6c4e37c8263442356587cb7cd75039d73792d346 (diff) |
Don't expand $(call gb_Executable_get_target,python) too early
Caused a clean 'make PythonTest_pyuno_pytests_ssl' to fail for me with
".../instdir/program/python.exe: No such file or directory" as the above
apparently expands to nothing at the time
solenv/gbuild/platform/com_MSC_class.mk is read.
Change-Id: I33ad8d8d0876dcec9b9cb02b71a9399d959cf660
-rw-r--r-- | solenv/gbuild/platform/com_MSC_class.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuild/platform/com_MSC_class.mk b/solenv/gbuild/platform/com_MSC_class.mk index 85701a3fbda1..cd1bd0408ef0 100644 --- a/solenv/gbuild/platform/com_MSC_class.mk +++ b/solenv/gbuild/platform/com_MSC_class.mk @@ -439,7 +439,7 @@ endef # PythonTest class gb_PythonTest_PRECOMMAND := $(gb_CppunitTest_CPPTESTPRECOMMAND) -gb_PythonTest_DEPS := $(call gb_Package_get_target,python3) $(call gb_Executable_get_target,python) +gb_PythonTest_DEPS = $(call gb_Package_get_target,python3) $(call gb_Executable_get_target,python) ifeq ($(strip $(CPPUNITTRACE)),TRUE) gb_CppunitTest_GDBTRACE := '$(DEVENV)' /debugexe |