fix(guix-bootstrap): wire mes seeds into bootstrap.scm and align xz seed link mode with Guix static bootstrap

This commit is contained in:
vxtls 2026-03-01 22:00:50 -05:00
parent 5e4c88782f
commit 5eac7edb91
3 changed files with 84 additions and 0 deletions

View file

@ -2,6 +2,14 @@
SEED_PREFIX="/bootstrap-seeds/xz-5.2.4"
src_prepare() {
default
# Mirror Guix bootstrap static strategy: force libtool-built xz executable
# to link with -all-static.
sed -i 's/^xz_LDADD =/xz_LDADD = -all-static /' src/xz/Makefile.in
}
src_configure() {
./configure \
--prefix="${SEED_PREFIX}" \