Commit 1ec4aefb authored by Mark Nunberg's avatar Mark Nunberg
Browse files

Fix ifeq condition (thanks @regae)

parent 3949c8a1
...@@ -59,7 +59,7 @@ uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') ...@@ -59,7 +59,7 @@ uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
USE_SSL?=0 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 # This is the prefix of openssl on my system. This should be the sane default
# based on the platform # based on the platform
ifeq ($(uname_S),Linux) ifeq ($(uname_S),Linux)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment