Simon Josefsson wrote: > I got a CI/CD build failure [1] for libidn on the new release fedora 42. > > checking that generated files are newer than configure... done > configure: creating ./config.status > config.status: creating csharpcomp.sh > ./config.status: line 2711: awk: command not found
And similarly, AlmaLinux 9 does not have 'cmp' (from the diffutils) installed by default, since 2 days ago. (Or, possibly, the dependencies of 'make' and 'gcc' have changed to not include 'diffutils' any more.) Here are two CI runs of coreutils [1][2]. In [1], all tests passed. In [2] many tests fail with ../tests/init.sh: line 711: cmp: command not found The fix is easy for the CI: Just do a "yum -y install diffutils". Bruno [1] https://github.com/coreutils/ci-check/actions/runs/14453120538 [2] https://github.com/coreutils/ci-check/actions/runs/14465809045