We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48446f9 commit 857f860Copy full SHA for 857f860
contrib/guix/libexec/build.sh
@@ -345,10 +345,7 @@ mkdir -p "$DISTSRC"
345
case "$HOST" in
346
*linux*)
347
# Compress DWARF sections in debug files and set proper permissions
348
- find "${DISTNAME}" -name "*.dbg" -type f -print0 | xargs -0 -P"$JOBS" -I{} sh -c '
349
- objcopy --compress-debug-sections=zlib "$1" "$1.tmp" && mv "$1.tmp" "$1"
350
- chmod 644 "$1"
351
- ' _ {}
+ find "${DISTNAME}" -name "*.dbg" -type f -print0 | xargs -0 -P"$JOBS" -I{} sh -c "objcopy --compress-debug-sections=zlib \"\$1\" \"\$1.tmp\" && mv \"\$1.tmp\" \"\$1\"; chmod 644 \"\$1\"" _ {}
352
353
# Create .build-id tree for perf auto-discovery
354
mkdir -p "${DISTNAME}/usr/lib/debug/.build-id"
0 commit comments