mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
sysutils/parallel: Fix --number-of-cores
- Bump PORTREVISION for package change PR: 268011 Reported by: jwb
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
PORTNAME= parallel
|
||||
PORTVERSION= 20231122
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= GNU
|
||||
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
--- src/parallel.orig 2023-11-23 00:27:43 UTC
|
||||
+++ src/parallel
|
||||
@@ -8704,13 +8704,9 @@ sub sct_freebsd($) {
|
||||
local $/ = "\n";
|
||||
my $cpu = shift;
|
||||
$cpu->{'cores'} ||=
|
||||
- (::qqx(qq{ sysctl -a dev.cpu | grep \%parent | awk '{ print \$2 }' | uniq | wc -l | awk '{ print \$1 }' })
|
||||
- or
|
||||
- ::qqx(qq{ sysctl hw.ncpu | awk '{ print \$2 }' }));
|
||||
+ ::qqx(qq{ sysctl kern.smp.cores | awk '{ print \$2 }' });
|
||||
$cpu->{'threads'} ||=
|
||||
- (::qqx(qq{ sysctl hw.ncpu | awk '{ print \$2 }' })
|
||||
- or
|
||||
- ::qqx(qq{ sysctl -a dev.cpu | grep \%parent | awk '{ print \$2 }' | uniq | wc -l | awk '{ print \$1 }' }));
|
||||
+ ::qqx(qq{ sysctl kern.smp.cpus | awk '{ print \$2 }' });
|
||||
return $cpu;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user