From 188f881badf9002b766da617f80d329901259f66 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Mon, 6 Apr 2026 11:38:00 +0200 Subject: [PATCH] Fix makeTarget in UnixCrossBuild I added an extra star in afb509e4338a66466f07277bf1f467552c6c2ee0, leading to: ``` $ make -j2 a l l make: *** No rule to make target 'a'. Stop. ``` --- master/custom/factories.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/master/custom/factories.py b/master/custom/factories.py index e401021a..ce4a25af 100644 --- a/master/custom/factories.py +++ b/master/custom/factories.py @@ -834,7 +834,7 @@ def setup(self, branch, worker, test_with_PTY=False, **kwargs): f"TESTTIMEOUT={self.test_timeout}", ] - compile = [*self.host_make_cmd, *get_j_opts(worker), *self.makeTarget] + compile = [*self.host_make_cmd, *get_j_opts(worker), self.makeTarget] self.addStep( Compile( name="Compile host Python",