summarylogtreecommitdiffstats
path: root/optipng.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'optipng.sh.in')
-rw-r--r--optipng.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/optipng.sh.in b/optipng.sh.in
index 39136cb167d6..d82008556b54 100644
--- a/optipng.sh.in
+++ b/optipng.sh.in
@@ -19,7 +19,7 @@ tidy_optipng() {
msg2 "$(gettext "Optimizing PNG images...")"
local png
find . -type f -iname "*.png" 2>/dev/null | while read -r png ; do
- [ $(jobs -p|wc -l) -gt $(nproc) ] && wait -n
+ [ $(jobs -p|wc -l) -gt $(getconf _NPROCESSORS_ONLN) ] && wait -n
if [[ $(file --brief --mime-type "$png") = 'image/png' ]]; then
{ optipng "${OPTIPNGFLAGS[@]}" "$png" &>/dev/null ||
warning "$(gettext "Could not optimize PNG image : %s")" "${png/$pkgdir\//}"; } &