Skip to content

Commit

Permalink
Disable parallel Make execution (go-gitea#29186)
Browse files Browse the repository at this point in the history
Ref:
https://www.gnu.org/software/make/manual/html_node/Parallel-Disable.html

> If the .NOTPARALLEL special target with no prerequisites is specified
anywhere then the entire instance of make will be run serially,
regardless of the parallel setting

(cherry picked from commit 69ed1a4)

Conflicts:
	README.md
  • Loading branch information
silverwind authored and earl-warren committed Feb 17, 2024
1 parent 4f050f3 commit 800fa60
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1023,3 +1023,8 @@ docker:

# This endif closes the if at the top of the file
endif

# Disable parallel execution because it would break some targets that don't
# specify exact dependencies like 'backend' which does currently not depend
# on 'frontend' to enable Node.js-less builds from source tarballs.
.NOTPARALLEL:

0 comments on commit 800fa60

Please sign in to comment.