aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2024-02-16 04:17:34 +0100
committerGitHub <noreply@github.com>2024-02-16 03:17:34 +0000
commit69ed1a4afbc9604cabe83041de31752dd5d101ee (patch)
tree6f20393be7e95a090764fbaf7796d683c465f8d7 /Makefile
parentc70f65e83bc1876fb368fd117d342573ff18a9e8 (diff)
downloadgitea-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--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index da4806d9c4..3065d9e683 100644
--- a/Makefile
+++ b/Makefile
@@ -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: