From 7fe07938775d7e81cfceb41fd7f03984bf589a82 Mon Sep 17 00:00:00 2001
From: David Turner <dturner@twosigma.com>
Date: Wed, 12 Apr 2017 16:52:12 -0400
Subject: [PATCH] Makefile: Disable parallel make

Disable parallel make, because the Makefile is written funny. Now it
won't fail if make is run with -j # (e.g. because MAKEFLAGS includes
-j #).
---
 Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Makefile b/Makefile
index 3d35592..59707a7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,5 @@
+.NOTPARALLEL:
+
 gitlab_repo = https://gitlab.com/gitlab-org/gitlab-ce.git
 gitlab_shell_repo = https://gitlab.com/gitlab-org/gitlab-shell.git
 gitlab_shell_clone_dir = go-gitlab-shell/src/gitlab.com/gitlab-org/gitlab-shell
-- 
GitLab