mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-04-18 09:22:15 +02:00
fix(guix-bootstrap): split bootstrap exec xz from static-binaries, use xz 5.0.6, just give it a try to solve problem
This commit is contained in:
parent
3007c9a8dd
commit
39796fd955
5 changed files with 47 additions and 1 deletions
15
steps-guix/improve/bootstrap-exec-xz-i686-linux.sh
Normal file
15
steps-guix/improve/bootstrap-exec-xz-i686-linux.sh
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
set -e
|
||||
|
||||
dist="${DISTFILES:-/external/distfiles}"
|
||||
xz_src="/bootstrap-seeds/xz-5.0.6/bin/xz"
|
||||
xz_dst="${dist}/bootstrap-exec-xz-i686-linux"
|
||||
|
||||
if [ ! -x "${xz_src}" ]; then
|
||||
echo "Missing required bootstrap seed executable: ${xz_src}" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
install -D -m 0755 "${xz_src}" "${xz_dst}"
|
||||
Loading…
Add table
Add a link
Reference in a new issue