Browse Source

websocket: fixed Makefile after previous commit

- whitespace required after ifneq
Daniel-Constantin Mierla 9 năm trước cách đây
mục cha
commit
e0f7a0c678
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      modules/websocket/Makefile

+ 3 - 1
modules/websocket/Makefile

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