diff options
author | Mark Nunberg <mnunberg@haskalah.org> | 2019-02-21 06:21:53 -0500 |
---|---|---|
committer | Mark Nunberg <mnunberg@haskalah.org> | 2019-02-21 06:21:53 -0500 |
commit | 1ec4aefba6d3690c461ea870eab0984a2cb597f0 (patch) | |
tree | 7c9c1fa3bc51bbc621bb5b81313d2b9dfa695d16 | |
parent | 3949c8a1536bf67293817315f616ec6d1462290e (diff) |
Fix ifeq condition (thanks @regae)
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |