GNU Automake 1.11.2.

This commit is contained in:
Andrius Štikonas 2021-03-28 23:18:33 +01:00
parent c345001ee8
commit 838a1bfb90
8 changed files with 51 additions and 2 deletions

View file

@ -0,0 +1,21 @@
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
default_src_prepare
./bootstrap
}
src_configure() {
./configure --prefix=/after
}
src_compile() {
make MAKEINFO=true
}
src_install() {
make install MAKEINFO=true
}

View file

@ -0,0 +1,16 @@
SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
SPDX-License-Identifier: GPL-2.0-or-later
Fixes aclocal-1.10 to work with our Perl
--- aclocal.in 2021-03-25 19:18:10.489134059 +0000
+++ aclocal.in 2021-03-25 19:18:20.159389339 +0000
@@ -45,6 +45,7 @@
use Automake::FileUtils;
use File::Basename;
use File::stat;
+use File::Glob;
use Cwd;
# Some globals.

View file

@ -31,7 +31,7 @@ src_prepare() {
cd ..
done
cd libmudflap
AUTOM4TE=autom4te-2.61 autoreconf-2.61 -f
AUTOMAKE=automake-1.10 ACLOCAL=aclocal-1.10 AUTOM4TE=autom4te-2.61 autoreconf-2.61 -f
cd ..
for dir in fixincludes intl libmudflap; do

View file

@ -30,7 +30,7 @@ src_prepare() {
cd ..
done
cd libmudflap
AUTOM4TE=autom4te-2.61 autoreconf-2.61 -f
AUTOMAKE=automake-1.10 ACLOCAL=aclocal-1.10 AUTOM4TE=autom4te-2.61 autoreconf-2.61 -f
cd ..
for dir in fixincludes intl libmudflap; do

View file

@ -12,6 +12,8 @@ set -e
build xz-5.0.5
build automake-1.11.2
echo "Bootstrapping completed."
exec env - PATH=/after/bin PS1="\w # " bash -i