Skip to content

Commit

Permalink
Fixed a logic bug in m4/ax_check_openssl.m4
Browse files Browse the repository at this point in the history
  • Loading branch information
Martyrshot committed Dec 8, 2023
1 parent c9e9576 commit 8c7fff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion m4/ax_check_openssl.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit 8c7fff9

Please sign in to comment.