diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2014-09-11 18:16:01 +0300 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2014-09-11 18:16:01 +0300 |
commit | 091a897aef02c796e960ae8b36c8352092674c14 (patch) | |
tree | 4a402a4c7354f97dd501ecd5628c5d25853eaf56 /utils | |
parent | 34fd74553a6ae4688bf0718b8c71a9d49416514d (diff) |
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 <hannu.nyman@iki.fi>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/haveged/Makefile | 4 |
1 files 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 |