summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKerin Millar <kfm@plushkava.net>2024-08-06 07:24:28 +0100
committerSam James <sam@gentoo.org>2024-08-11 11:10:55 +0100
commit7128696bd54bc2c6d286552d3806fd5e4e7a1b42 (patch)
tree4f387af20de9fc30ad1d193f4731a6ec220afba7
parentDocument POSIXLY_CORRECT as an influential variable (diff)
downloadgentoo-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.sh3
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"