From a5c9ad36e8cb0cbd04e2e959e0fd893f146e8964 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Johan=20Bergstr=C3=B6m?= <bugs@bergstroem.nu>
Date: Fri, 23 Oct 2015 10:43:42 +1100
Subject: [PATCH] build: don't compile and test in parallel

While invoking `make -j2 test-addons` the rules `all` and `test-build`
(as part of `build-addons`) would be run simultaneously. Avoid this by
telling `make` to not run `build-addons` in parallel.
---
 Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Makefile b/Makefile
index 02619fac98ddd7..11200b9f3f3d39 100644
--- a/Makefile
+++ b/Makefile
@@ -542,3 +542,5 @@ lint: jslint cpplint
 	blog blogclean tar binary release-only bench-http-simple bench-idle \
 	bench-all bench bench-misc bench-array bench-buffer bench-net \
 	bench-http bench-fs bench-tls cctest run-ci
+
+.NOTPARALLEL: build-addons