summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2017-02-14 21:21:31 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-02-14 21:23:11 +0100
commitadb6ffda7890de932a4f6e435cfd903c345ca039 (patch)
tree97da58fef32be1ebaabdde6fe33de059604208af
parent6cff741ebaf7123739398686ace186ed9974e71c (diff)
package/hiredis: fix makefile code
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--package/hiredis/hiredis.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/hiredis/hiredis.mk b/package/hiredis/hiredis.mk
index eb96711ab..cd406f143 100644
--- a/package/hiredis/hiredis.mk
+++ b/package/hiredis/hiredis.mk
@@ -19,7 +19,7 @@ ifeq ($(BR2_STATIC_LIBS),y)
HIREDIS_TARGETS += static
else ifeq ($(BR2_SHARED_LIBS),y)
HIREDIS_TARGETS += dynamic
-else ifeq $(BR2_SHARED_STATIC_LIBS),y)
+else ifeq ($(BR2_SHARED_STATIC_LIBS),y)
HIREDIS_TARGETS += dynamic static
endif