From 1ec4aefba6d3690c461ea870eab0984a2cb597f0 Mon Sep 17 00:00:00 2001 From: Mark Nunberg Date: Thu, 21 Feb 2019 06:21:53 -0500 Subject: Fix ifeq condition (thanks @regae) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9ca40ee..b253904 100644 --- a/Makefile +++ b/Makefile @@ -59,7 +59,7 @@ uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') USE_SSL?=0 -ifdef USE_SSL +ifeq ($(USE_SSL),1) # This is the prefix of openssl on my system. This should be the sane default # based on the platform ifeq ($(uname_S),Linux) -- cgit v1.2.3