From 628a34a43d0c86b6222068e8e79a86867412331e Mon Sep 17 00:00:00 2001 From: Chris Conlon Date: Wed, 18 May 2022 12:52:07 -0600 Subject: [PATCH] fix --enable-openssh FIPS detection syntax in configure.ac --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 435fafdb4..5797fdd35 100644 --- a/configure.ac +++ b/configure.ac @@ -2758,7 +2758,7 @@ AC_ARG_ENABLE([ed25519-stream], ) -if (test "$ENABLED_OPENSSH" = "yes" && "x$ENABLED_FIPS" = "xno") || \ +if (test "$ENABLED_OPENSSH" = "yes" && test "x$ENABLED_FIPS" = "xno") || \ test "$ENABLED_CHRONY" = "yes" then ENABLED_ED25519="yes"