commit: f6893c43c457d2e9e3dded32a98f07cd39dd45df Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon Oct 6 03:48:17 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Oct 6 03:48:17 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6893c43
net-dns/inadyn: call eautoreconf The musl patch we apply touches Makefile.am, so we need to eautoreconf. Closes: https://bugs.gentoo.org/937277 Signed-off-by: Sam James <sam <AT> gentoo.org> net-dns/inadyn/inadyn-2.12.0-r2.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/net-dns/inadyn/inadyn-2.12.0-r2.ebuild b/net-dns/inadyn/inadyn-2.12.0-r2.ebuild index e93a10ff8773..e396c7489f53 100644 --- a/net-dns/inadyn/inadyn-2.12.0-r2.ebuild +++ b/net-dns/inadyn/inadyn-2.12.0-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit systemd tmpfiles +inherit autotools systemd tmpfiles DESCRIPTION="Dynamic DNS client with multiple SSL/TLS library support" HOMEPAGE="https://github.com/troglobit/inadyn" @@ -31,6 +31,13 @@ BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}/${PN}-2.12.0-musl.patch" ) +src_prepare() { + default + + # Needed for musl patch + eautoreconf +} + src_configure() { # Tests would need a custom config file in homedir per configure help? local myeconfargs=(
