diff options
author | silverwind <me@silverwind.io> | 2024-02-16 04:17:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-16 03:17:34 +0000 |
commit | 69ed1a4afbc9604cabe83041de31752dd5d101ee (patch) | |
tree | 6f20393be7e95a090764fbaf7796d683c465f8d7 /Makefile | |
parent | c70f65e83bc1876fb368fd117d342573ff18a9e8 (diff) | |
download | gitea-69ed1a4afbc9604cabe83041de31752dd5d101ee.tar.gz gitea-69ed1a4afbc9604cabe83041de31752dd5d101ee.zip |
Disable parallel Make execution (#29186)
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
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -988,3 +988,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: |