Skip to content

Commit ff63d7e

Browse files
committed
Fix race condition on parallel builds
From sm64pc/sm64ex#512 , fixes issue https://github.com/Llennpie/Saturn/issues/21
1 parent 48a32e9 commit ff63d7e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ endif
249249
endif
250250

251251
# Make tools if out of date
252-
DUMMY != make -C tools >&2 || echo FAIL
252+
DUMMY != make -C tools -j1 >&2 || echo FAIL
253253
ifeq ($(DUMMY),FAIL)
254254
$(error Failed to build tools)
255255
endif

0 commit comments

Comments
 (0)