From cdf1796f88cf295b6a291f5d2dfba8a405d8ce61 Mon Sep 17 00:00:00 2001 From: Ashkan Jazayeri Date: Tue, 5 Jun 2018 22:26:42 +0430 Subject: [PATCH] yara: add missing config string Missing CONFIG string added at the beginning of Magic and Cuckoo configure variables. Signed-off-by: Ashkan Jazayeri --- utils/yara/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/yara/Makefile b/utils/yara/Makefile index a15f78f0e..bdaf69805 100644 --- a/utils/yara/Makefile +++ b/utils/yara/Makefile @@ -42,8 +42,8 @@ endef CONFIGURE_ARGS += \ --disable-dotnet \ - $(if $(YARA_module_magic),--enable,--disable)-magic \ - $(if $(YARA_module_cuckoo),--enable,--disable)-cuckoo + $(if $(CONFIG_YARA_module_magic),--enable,--disable)-magic \ + $(if $(CONFIG_YARA_module_cuckoo),--enable,--disable)-cuckoo define Package/yara/config source "$(SOURCE)/Config.in"