From 3cceda9f4855ac1f5df349f42efdbf5058d08f48 Mon Sep 17 00:00:00 2001 From: fanquake Date: Mon, 8 Sep 2025 16:14:12 +0100 Subject: [PATCH] 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. --- contrib/guix/libexec/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/guix/libexec/build.sh b/contrib/guix/libexec/build.sh index 871f302755c..f23133fd584 100755 --- a/contrib/guix/libexec/build.sh +++ b/contrib/guix/libexec/build.sh @@ -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