From a62946e9a998962a617c5adeb2447640ee8fb771 Mon Sep 17 00:00:00 2001 From: nmburgan <13688219+nmburgan@users.noreply.github.com> Date: Wed, 17 Dec 2025 14:11:46 -0800 Subject: [PATCH] pkgconf workaround for redhatfips --- configs/components/ruby-augeas.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/components/ruby-augeas.rb b/configs/components/ruby-augeas.rb index edc77828..718e40e9 100644 --- a/configs/components/ruby-augeas.rb +++ b/configs/components/ruby-augeas.rb @@ -53,7 +53,7 @@ # The pkg-config shim gets confused on Almalinux 9 and 10 that we are building on # due to the version of rpm being cranky about using our older OpenSSL version, # so bypass the shim and use pkgconf directly. - extconf += ' --with-pkg-config=/usr/bin/pkgconf' if platform.name =~ /el-(9|10)/ + extconf += ' --with-pkg-config=/usr/bin/pkgconf' if platform.name =~ /(el|redhatfips)-(9|10)/ build_commands << extconf build_commands << "#{platform[:make]} -e -j$(shell expr $(shell #{platform[:num_cores]}) + 1)"