mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-04 02:15:24 +01:00
automake 1.15 needs autoconf 2.69, which needs automake 1.11 but we can skip intermediate versions. Fixes: #93 Fixes: #100
27 lines
479 B
Bash
Executable file
27 lines
479 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
|
# SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
|
|
# SPDX-FileCopyrightText: 2021 Paul Dersey <pdersey@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set -e
|
|
|
|
. helpers.sh
|
|
|
|
build xz-5.0.5
|
|
|
|
build automake-1.11.2
|
|
|
|
build autoconf-2.69
|
|
|
|
build automake-1.15.1
|
|
|
|
build tar-1.34
|
|
|
|
build gmp-6.2.1
|
|
|
|
echo "Bootstrapping completed."
|
|
|
|
exec env - PATH=/after/bin PS1="\w # " bash -i
|