From 091a897aef02c796e960ae8b36c8352092674c14 Mon Sep 17 00:00:00 2001 From: Hannu Nyman Date: Thu, 11 Sep 2014 18:16:01 +0300 Subject: [PATCH] haveged: fix CONFIGURE_ARGS Add backslash to the CONFIGURE_ARGS definition to remove thread support as originally intended. The error has been there since the bump to 1.7c. Signed-off-by: Hannu Nyman --- utils/haveged/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/haveged/Makefile b/utils/haveged/Makefile index c382ad99c..1d7147e82 100644 --- a/utils/haveged/Makefile +++ b/utils/haveged/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=haveged PKG_VERSION:=1.9.1 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.issihosts.com/$(PKG_NAME) \ @@ -43,7 +43,7 @@ define Package/libhavege endef CONFIGURE_ARGS+= \ - --enable-daemon=yes + --enable-daemon=yes \ --enable-threads=no define Build/InstallDev