build: Fix xargs warnings for Guix builds

This commit is contained in:
Hennadii Stepanov 2022-01-22 23:06:07 +02:00
parent e3ce019667
commit c73415bc10
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

View file

@ -377,7 +377,7 @@ mkdir -p "$DISTSRC"
{
find "${DISTNAME}/bin" -type f -executable -print0
find "${DISTNAME}/lib" -type f -print0
} | xargs -0 -n1 -P"$JOBS" -I{} "${DISTSRC}/contrib/devtools/split-debug.sh" {} {} {}.dbg
} | xargs -0 -P"$JOBS" -I{} "${DISTSRC}/contrib/devtools/split-debug.sh" {} {} {}.dbg
;;
esac