Bläddra i källkod

websocket: fixed Makefile after previous commit

- whitespace required after ifneq
Daniel-Constantin Mierla 9 år sedan
förälder
incheckning
e0f7a0c678
1 ändrade filer med 3 tillägg och 1 borttagningar
  1. 3 1
      modules/websocket/Makefile

+ 3 - 1
modules/websocket/Makefile

@@ -13,12 +13,14 @@ SSL_BUILDER=$(shell \
 	if pkg-config --exists libssl; then \
 		echo 'pkg-config libssl'; \
 	fi)
-ifneq($(SSL_BUILDER),)
+
+ifneq ($(SSL_BUILDER),)
 SSL_BUILDER+=$(shell \
 	if pkg-config --exists libcrypto; then \
 		echo 'libcrypto'; \
 	fi)
 endif
+
 endif
 
 ifneq ($(SSL_BUILDER),)