From 2ff01209f90fe96a4ced6109faf50abe8a31fbda Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Fri, 13 Feb 2015 15:26:36 +0000 Subject: [PATCH] build script update --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index a2dcdae..bb094cc 100755 --- a/build.sh +++ b/build.sh @@ -6,7 +6,7 @@ PREFIX=`cat Makefile | grep '^prefix =' | awk '{print $3}'` case $1 in '') echo '-- building...' - make -j5 + make -j8 echo '-- installing...' make uninstall 1>/dev/null make install 1>/dev/null @@ -17,7 +17,7 @@ case $1 in fi;; 'clean') echo '-- cleaning...' - make -j5 clean;; + make -j8 clean;; *) echo 'error: unknown action' 1>&2 exit 1;;