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,7 @@
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
rm bin/autoconf.in
rm Makefile.in */Makefile.in */*/Makefile.in aclocal.m4 configure
autoreconf-2.54
@ -18,6 +19,10 @@ src_configure() {
}
src_compile() {
# Workaround for racy make dependencies
make -C bin autom4te
make -C lib
make MAKEINFO=true
}