From: Keith Packard Date: Mon, 18 Mar 2013 21:52:59 +0000 (-0700) Subject: avoid parallel make when rebuilding packages X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=25b0bc45b2eb595f16dfd27441d02bcafb6308e2;p=hw%2Faltusmetrum avoid parallel make when rebuilding packages Maybe this will make things happier? Signed-off-by: Keith Packard --- 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