From 716e851d2a7efecd8051d780f86cdb6351f143da Mon Sep 17 00:00:00 2001 From: Eric J Korpela Date: Mon, 19 Jan 2015 14:49:36 -0800 Subject: [PATCH] One more attempt to fix the logical or problem --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 1fe5624ea0..3d988a2381 100644 --- a/configure.ac +++ b/configure.ac @@ -465,9 +465,9 @@ ERROR: could not find (recent enough) development-libs for libcurl. fi dnl ---------- SSL (m4/check_ssl.m4) -if [["${enable_client}" = yes -o "${enable_server}" = yes]]; then +if test "x${enable_client}" = xyes || test "x${enable_server}" = xyes]; then CHECK_SSL - if test "${found_ssl}" = "yes"; then + if test "x${found_ssl}" = "xyes"; then BOINC_EXTRA_LIBS="${BOINC_EXTRA_LIBS} ${SSL_LIBS}" fi fi