However, the gcc compiler was not working since the linker symlink /usr/bin/ld -> /usr/bin/ld.bfd was not created when installing binutils. The binutils rpm spec file creates this symlink using the alternatives command which is now found in the alternatives package (was previously included in the chkconfig package in rhel 8). To fix this, I added the following to my project configuration:
Comments 1
Thanks for adding this release.
However, the gcc compiler was not working since the linker symlink /usr/bin/ld -> /usr/bin/ld.bfd was not created when installing binutils. The binutils rpm spec file creates this symlink using the alternatives command which is now found in the alternatives package (was previously included in the chkconfig package in rhel 8). To fix this, I added the following to my project configuration:
%if %{rhel} == 9 FileProvides: /usr/sbin/alternatives alternatives %endif
Perhaps this needs to be added in the AlmaLinux:9 project configuration?