From 25b0bc45b2eb595f16dfd27441d02bcafb6308e2 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Mon, 18 Mar 2013 14:52:59 -0700 Subject: [PATCH] avoid parallel make when rebuilding packages Maybe this will make things happier? Signed-off-by: Keith Packard --- .hooks/post-checkout | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.hooks/post-checkout b/.hooks/post-checkout index c1e6b77..04561f2 100755 --- a/.hooks/post-checkout +++ b/.hooks/post-checkout @@ -1,4 +1,4 @@ #!/bin/sh TOP=`git rev-parse --git-dir`/.. -cd "$TOP"/packages >/dev/null && make -q || make +cd "$TOP"/packages >/dev/null && make -j1 -q || make -- 2.30.2