diff options
author | Kerin Millar <kfm@plushkava.net> | 2024-08-06 07:24:28 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-08-11 11:10:55 +0100 |
commit | 7128696bd54bc2c6d286552d3806fd5e4e7a1b42 (patch) | |
tree | 4f387af20de9fc30ad1d193f4731a6ec220afba7 | |
parent | Document POSIXLY_CORRECT as an influential variable (diff) | |
download | gentoo-functions-7128696bd54bc2c6d286552d3806fd5e4e7a1b42.tar.gz gentoo-functions-7128696bd54bc2c6d286552d3806fd5e4e7a1b42.tar.bz2 gentoo-functions-7128696bd54bc2c6d286552d3806fd5e4e7a1b42.zip |
Re-wrap a comment in get_nprocs()
Signed-off-by: Kerin Millar <kfm@plushkava.net>
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | functions.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/functions.sh b/functions.sh index f84708f..2174fec 100644 --- a/functions.sh +++ b/functions.sh @@ -319,7 +319,8 @@ get_nprocs() true elif getconf _NPROCESSORS_ONLN 2>/dev/null; then # This constant is standard as of POSIX-1.2024 and was already - # supported by glibc, musl-utils, macOS, FreeBSD, NetBSD and OpenBSD. + # supported by glibc, musl-utils, macOS, FreeBSD, NetBSD and + # OpenBSD. true else warn "get_nprocs: failed to determine the number of processors" |