Recreate autoconf.in file from autoconf.as

Fixes: #92
This commit is contained in:
Andrius Štikonas 2021-04-11 17:15:02 +01:00
parent bd4a6a9399
commit 23b30d34d2
5 changed files with 24 additions and 1 deletions

View file

@ -3,6 +3,8 @@
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
rm bin/autoconf.in
autoreconf-2.57 -f
# Install autoconf data files into versioned directory
@ -16,6 +18,9 @@ src_configure() {
}
src_compile() {
# Workaround for racy make dependencies
make -C bin autom4te
make -C lib
make MAKEINFO=true
}