Skip to content

Commit 5904dad

Browse files
committed
Merge pull request micropython#483 from aitjcize/parallel
Fix parallel build.
2 parents bbae42d + 658eae3 commit 5904dad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/mkrules.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ $(BUILD)/%.pp: %.c
5959
# object directories (but only for existance), and the object directories
6060
# will be created if they don't exist.
6161
OBJ_DIRS = $(sort $(dir $(OBJ)))
62-
$(OBJ): | $(OBJ_DIRS)
62+
$(OBJ): $(PY_BUILD)/qstrdefs.generated.h | $(OBJ_DIRS)
6363
$(OBJ_DIRS):
6464
$(MKDIR) -p $@
6565

0 commit comments

Comments
 (0)