Module: kamailio Branch: master Commit: e0f7a0c678b37c44312369dd90ffdc531782bb99 URL: https://github.com/kamailio/kamailio/commit/e0f7a0c678b37c44312369dd90ffdc53...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@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/e0f7a0c678b37c44312369dd90ffdc53... Patch: https://github.com/kamailio/kamailio/commit/e0f7a0c678b37c44312369dd90ffdc53...
---
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),)