Hi,
the Hydra build for GNU Inetutils currently¹ fails.
The error message points towards a wrong Automake version:
lib/Makefile.am:110: require Automake 1.14, but have 1.11.6
Automake 1.11.x is selected via using "automake111x" instead
of just "automake". Thus I would suggest to drop the wrong
specific version request.
Please consider applying the attached patch.
Thanks,
Erik
¹⁾ I checked about a month ago.From 9be6eded8e07c8a2f5628f87064023e3ac47f08e Mon Sep 17 00:00:00 2001
From: Erik Auerswald <[email protected]>
Date: Sun, 7 Aug 2022 18:51:35 +0200
Subject: [PATCH] inetutils: use current automake
To: [email protected]
Currently, Hydra builds of GNU Inetutils are broken, the
reported error pertains to a wrong Automake version:
lib/Makefile.am:110: require Automake 1.14, but have 1.11.6
Attempt to use whatever is the current Automake version
in NixOS.
---
inetutils/release.nix | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/inetutils/release.nix b/inetutils/release.nix
index 0e4ce91..8fc9db9 100644
--- a/inetutils/release.nix
+++ b/inetutils/release.nix
@@ -74,7 +74,7 @@ let
buildInputs = (buildInputsFrom pkgs)
++ (with pkgs;
- [ autoconf automake111x bison perl git
+ [ autoconf automake bison perl git
texinfo help2man gnum4
]);
--
2.17.1