Skip to content

Commit 5a51815

Browse files
committed
Merge bitcoin/bitcoin#24129: build: Fix xargs warnings for Guix builds
c73415b build: Fix xargs warnings for Guix builds (Hennadii Stepanov) Pull request description: On master (e3ce019) there are warnings in `./contrib/guix/guix-build` logs: ``` xargs: warning: options --max-args and --replace/-I/-i are mutually exclusive, ignoring previous --max-args value ``` This PR fixes such warnings. ACKs for top commit: prusnak: utACK c73415b Tree-SHA512: a7b55f59afbb19b78f795cea64acacf29903cfcd5fd7c37a771b073c1f2ff54555a26f3d00c1c73a8ef588396217ddf598e32b2ae961559042cc051b0aad162a
2 parents 32ee767 + c73415b commit 5a51815

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/guix/libexec/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ mkdir -p "$DISTSRC"
377377
{
378378
find "${DISTNAME}/bin" -type f -executable -print0
379379
find "${DISTNAME}/lib" -type f -print0
380-
} | xargs -0 -n1 -P"$JOBS" -I{} "${DISTSRC}/contrib/devtools/split-debug.sh" {} {} {}.dbg
380+
} | xargs -0 -P"$JOBS" -I{} "${DISTSRC}/contrib/devtools/split-debug.sh" {} {} {}.dbg
381381
;;
382382
esac
383383

0 commit comments

Comments
 (0)