From 66edd0bfbe21c5b261538cc67add2c51958d80fa Mon Sep 17 00:00:00 2001 From: fsLeg Date: Thu, 13 Nov 2014 00:38:49 +0300 Subject: [PATCH] Switched from a moderately complex expression for NUMJOBS variable to a more reliable nproc. --- aegisub/aegisub.SlackBuild | 2 +- ffms2/ffms2.SlackBuild | 2 +- opera/opera.SlackBuild | 2 +- steghide/steghide.SlackBuild | 2 +- wxWidgets3/wxWidgets3.SlackBuild | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) 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: -- 2.46.3