Merge pull request #96 from stikonas/autoconf.as

Recreate autoconf.in file from autoconf.as
This commit is contained in:
fosslinux 2021-04-13 09:45:13 +10:00 committed by GitHub
commit 2423b77114
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
aclocal-1.7
sed -i 's/2.54/2.53/' aclocal.m4
@ -24,6 +25,9 @@ src_configure() {
}
src_compile() {
# Workaround for racy make dependencies
make -C bin autom4te
make -C lib
make MAKEINFO=true
}

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,7 +19,10 @@ src_configure() {
}
src_compile() {
make MAKEINFO=true DESTDIR="${DESTDIR}"
# Workaround for racy make dependencies
make -C bin autom4te
make -C lib
make MAKEINFO=true
}
src_install() {

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
}

View File

@ -3,6 +3,8 @@
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
rm bin/autoconf.in
autoreconf-2.55 -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
}

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
}