From: fsLeg Date: Wed, 12 Nov 2014 21:38:49 +0000 (+0300) Subject: Switched from a moderately complex expression for NUMJOBS variable to a more reliable... X-Git-Url: https://git.t-rg.ws/?a=commitdiff_plain;h=66edd0bfbe21c5b261538cc67add2c51958d80fa;p=slackbuilds.git Switched from a moderately complex expression for NUMJOBS variable to a more reliable nproc. --- diff --git a/aegisub/aegisub.SlackBuild b/aegisub/aegisub.SlackBuild index 6b144de..e66eeda 100755 --- a/aegisub/aegisub.SlackBuild +++ b/aegisub/aegisub.SlackBuild @@ -29,7 +29,7 @@ TAG=${TAG:-fsleg} # Use parallel building if possible if [ -z "$NUMJOBS" ]; then - NUMJOBS=$( lscpu | egrep '^CPU\(s\):' | tr -s ' ' | cut -d ' ' -f 2 ) + NUMJOBS=$(nproc) fi # Automatically determine the architecture we're building on: diff --git a/ffms2/ffms2.SlackBuild b/ffms2/ffms2.SlackBuild index bdc928d..7821e68 100755 --- a/ffms2/ffms2.SlackBuild +++ b/ffms2/ffms2.SlackBuild @@ -29,7 +29,7 @@ TAG=${TAG:-_SBo} # Use parallel building if possible if [ -z "$NUMJOBS" ]; then - NUMJOBS=$( lscpu | egrep '^CPU\(s\):' | tr -s ' ' | cut -d ' ' -f 2 ) + NUMJOBS=$(nproc) fi # Automatically determine the architecture we're building on: diff --git a/opera/opera.SlackBuild b/opera/opera.SlackBuild index f4c7763..0afe5bb 100755 --- a/opera/opera.SlackBuild +++ b/opera/opera.SlackBuild @@ -42,7 +42,7 @@ TAG=${TAG:-fsleg} # Use parallel building if possible if [ -z "$NUMJOBS" ]; then - NUMJOBS=$( lscpu | egrep '^CPU\(s\):' | tr -s ' ' | cut -d ' ' -f 2 ) + NUMJOBS=$(nproc) fi # Automatically determine the architecture we're building on: diff --git a/steghide/steghide.SlackBuild b/steghide/steghide.SlackBuild index 9773e33..141f44e 100755 --- a/steghide/steghide.SlackBuild +++ b/steghide/steghide.SlackBuild @@ -29,7 +29,7 @@ TAG=${TAG:-fsleg} # Use parallel building if possible if [ -z "$NUMJOBS" ]; then - NUMJOBS=$( lscpu | egrep '^CPU\(s\):' | tr -s ' ' | cut -d ' ' -f 2 ) + NUMJOBS=$(nproc) fi # Automatically determine the architecture we're building on: diff --git a/wxWidgets3/wxWidgets3.SlackBuild b/wxWidgets3/wxWidgets3.SlackBuild index 87be92f..bbf6679 100755 --- a/wxWidgets3/wxWidgets3.SlackBuild +++ b/wxWidgets3/wxWidgets3.SlackBuild @@ -31,7 +31,7 @@ SRCNAM=wxWidgets # Use parallel building if possible if [ -z "$NUMJOBS" ]; then - NUMJOBS=$( lscpu | egrep '^CPU\(s\):' | tr -s ' ' | cut -d ' ' -f 2 ) + NUMJOBS=$(nproc) fi # Automatically determine the architecture we're building on: