diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-01-22 23:06:07 +0200 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-01-22 23:18:41 +0200 |
commit | c73415bc10c1baa7988e1c55a0e9201df73a6c22 (patch) | |
tree | 2805671def91366f5579df12e4c59e785e386133 /contrib/guix/libexec | |
parent | e3ce019667fba2ec50a59814a26566fb67fa9125 (diff) |
build: Fix xargs warnings for Guix builds
Diffstat (limited to 'contrib/guix/libexec')
-rwxr-xr-x | contrib/guix/libexec/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/guix/libexec/build.sh b/contrib/guix/libexec/build.sh index 79a3e77f40..e06a469338 100755 --- a/contrib/guix/libexec/build.sh +++ b/contrib/guix/libexec/build.sh @@ -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 |