From c01c0d74fd20af17bdabcd6bd3bcb9cb50558693 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 12 Jun 2012 20:11:08 +0000 Subject: [PATCH] 2.X-ify noderun, part two git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@12683 d708f5d6-7413-0410-9779-e7cbd77b26cf --- tools/linux_packaging/noderun | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/linux_packaging/noderun b/tools/linux_packaging/noderun index af64638aea..71b5ccea9b 100644 --- a/tools/linux_packaging/noderun +++ b/tools/linux_packaging/noderun @@ -9,9 +9,11 @@ if mount | grep --silent vmshare ; then sudo mount -t vboxsf vmshare $HOME/vmshare fi +NPROCS=`grep -c processor /cpu/procinfo` + cd $BASE || exit 1 svn update || exit 1 -scons || exit 1 +scons --config=force -j$NPROCS || exit 1 cd tools/linux_packaging || exit 1 ./build --public --strip some || exit 1 ./package --public --singlearch || exit 1