mirror of https://github.com/bitcoin/bitcoin.git
guix: strip binaries in libexec
31679 moved some internal binaries to libexec/, but the Guix build wasn't updated to stip these binaries of their debug symbols.
This commit is contained in:
parent
3eea9fd395
commit
3cceda9f48
|
@ -290,7 +290,7 @@ mkdir -p "$DISTSRC"
|
|||
*)
|
||||
# Split binaries from their debug symbols
|
||||
{
|
||||
find "${DISTNAME}/bin" -type f -executable -print0
|
||||
find "${DISTNAME}/bin" "${DISTNAME}/libexec" -type f -executable -print0
|
||||
} | xargs -0 -P"$JOBS" -I{} "${DISTSRC}/build/split-debug.sh" {} {} {}.dbg
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in New Issue