mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-04-16 16:32:17 +02:00
15 lines
350 B
Bash
15 lines
350 B
Bash
#!/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}"
|