Skip to content

Commit 414ebf8

Browse files
Disable parallel build in Make 4.4 (#12244)
In versions of GNU Make prior to 4.4, ".NOTPARALLEL: compile" made the whole build run serially. In 4.4 and later, ".NOTPARALLEL: compile" makes only the compile target run serially. This breaks the build and can lead to e.g. EEx being built before Mix.
1 parent 0e9cb57 commit 414ebf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ SOURCE_DATE_EPOCH_PATH = lib/elixir/tmp/ebin_reproducible
2424
SOURCE_DATE_EPOCH_FILE = $(SOURCE_DATE_EPOCH_PATH)/SOURCE_DATE_EPOCH
2525

2626
.PHONY: install compile erlang elixir unicode app build_plt clean_plt dialyze test check_reproducible clean clean_residual_files format install_man clean_man docs Docs.zip Precompiled.zip zips
27-
.NOTPARALLEL: compile
27+
.NOTPARALLEL:
2828

2929
#==> Functions
3030

0 commit comments

Comments
 (0)