Skip to content

Commit 49b353c

Browse files
authored
Fix makeTarget in UnixCrossBuild (GH-697)
I added an extra star in afb509e, leading to: ``` $ make -j2 a l l make: *** No rule to make target 'a'. Stop. ```
1 parent afb509e commit 49b353c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

master/custom/factories.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ def setup(self, branch, worker, test_with_PTY=False, **kwargs):
834834
f"TESTTIMEOUT={self.test_timeout}",
835835
]
836836

837-
compile = [*self.host_make_cmd, *get_j_opts(worker), *self.makeTarget]
837+
compile = [*self.host_make_cmd, *get_j_opts(worker), self.makeTarget]
838838
self.addStep(
839839
Compile(
840840
name="Compile host Python",

0 commit comments

Comments
 (0)