From: Stefano Stabellini Date: Fri, 20 Mar 2015 14:19:39 +0000 (+0000) Subject: Do not use make -j X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=00160f87d7ee0925db440e4d331fc198f173b859;p=people%2Fsstabellini%2Fraisin.git Do not use make -j It causes the OOM killer to intervene. Use make -j2 instead. Signed-off-by: Stefano Stabellini --- diff --git a/build.sh b/build.sh index dd917e4..9b04026 100755 --- a/build.sh +++ b/build.sh @@ -6,7 +6,7 @@ source common-functions.sh export PWD=`pwd` export GIT=${GIT-git} export SUDO=${SUDO-sudo} -export MAKE=${MAKE-make -j} +export MAKE=${MAKE-make} export PREFIX=${PREFIX-/usr} export INST_DIR=${DESTDIR-dist} diff --git a/config b/config index cc9bc86..9bbee68 100644 --- a/config +++ b/config @@ -1,7 +1,7 @@ # Config variables for raixen # Build config -MAKE="make -j" +MAKE="make -j2" PREFIX="/usr" DESTDIR=dist