summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Nunberg <mnunberg@haskalah.org>2019-02-21 06:21:53 -0500
committerMark Nunberg <mnunberg@haskalah.org>2019-02-21 06:21:53 -0500
commit1ec4aefba6d3690c461ea870eab0984a2cb597f0 (patch)
tree7c9c1fa3bc51bbc621bb5b81313d2b9dfa695d16
parent3949c8a1536bf67293817315f616ec6d1462290e (diff)
Fix ifeq condition (thanks @regae)
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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)