From 8c7fff97632f2eee916d63e72daaf6da230d313f Mon Sep 17 00:00:00 2001 From: Martyrshot Date: Fri, 8 Dec 2023 09:21:10 -0600 Subject: [PATCH] Fixed a logic bug in m4/ax_check_openssl.m4 --- m4/ax_check_openssl.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/ax_check_openssl.m4 b/m4/ax_check_openssl.m4 index dc24ff7de0..05e7c7ba88 100644 --- a/m4/ax_check_openssl.m4 +++ b/m4/ax_check_openssl.m4 @@ -53,7 +53,7 @@ AC_DEFUN([AX_CHECK_OPENSSL], [ esac ], [ # if ssldirs is set, do not try to use pkg-config to locate openssl - if test x"$ssldirs" != x""; then + if test x"$ssldirs" = x""; then # if pkg-config is installed and openssl has installed a .pc file, # then use that information and don't search ssldirs AC_CHECK_TOOL([PKG_CONFIG], [pkg-config])