From 85ec02cd908feaa164a4d8c7bd5ed5b0476d758c Mon Sep 17 00:00:00 2001 From: Thomas Powell Date: Wed, 17 Apr 2024 14:54:24 -0400 Subject: [PATCH] Remove - from -enable_fips Signed-off-by: Thomas Powell --- config/software/openssl.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/software/openssl.rb b/config/software/openssl.rb index 2a6800f9b..b098bf580 100644 --- a/config/software/openssl.rb +++ b/config/software/openssl.rb @@ -74,6 +74,7 @@ build do env = with_standard_compiler_flags(with_embedded_path) + if aix? env["M4"] = "/opt/freeware/bin/m4" elsif mac_os_x? && arm? @@ -110,7 +111,7 @@ if version.satisfies?("< 3.0.0") configure_args += ["--with-fipsdir=#{install_dir}/embedded", "fips"] if fips_mode? else - configure_args += ["-enable-fips"] if fips_mode? + configure_args += ["enable-fips"] if fips_mode? end configure_cmd =