[sr-dev] git:master:e0f7a0c6: websocket: fixed Makefile after previous commit

Daniel-Constantin Mierla miconda at gmail.com
Tue Dec 15 12:26:52 CET 2015


Module: kamailio
Branch: master
Commit: e0f7a0c678b37c44312369dd90ffdc531782bb99
URL: https://github.com/kamailio/kamailio/commit/e0f7a0c678b37c44312369dd90ffdc531782bb99

Author: Daniel-Constantin Mierla <miconda at gmail.com>
Committer: Daniel-Constantin Mierla <miconda at gmail.com>
Date: 2015-12-15T12:26:02+01:00

websocket: fixed Makefile after previous commit

- whitespace required after ifneq

---

Modified: modules/websocket/Makefile

---

Diff:  https://github.com/kamailio/kamailio/commit/e0f7a0c678b37c44312369dd90ffdc531782bb99.diff
Patch: https://github.com/kamailio/kamailio/commit/e0f7a0c678b37c44312369dd90ffdc531782bb99.patch

---

diff --git a/modules/websocket/Makefile b/modules/websocket/Makefile
index 010aa90..42c4c79 100644
--- a/modules/websocket/Makefile
+++ b/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),)




More information about the sr-dev mailing list