diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2017-10-28 11:34:36 +0300 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2017-10-30 18:37:27 +0200 |
commit | 92ffab8bbe6572867425af641e41acedbb529cf3 (patch) | |
tree | 91f5c01df0118326f06d073a0f495a9b05f5c70c /net/wget/Makefile | |
parent | ced4eaf5a54251c899cdf8f80bdf3b17234d4164 (diff) |
wget: fix update to 1.19.2 for buildbot
Disable linkage to libunistring with a hack: advice configure
to use included libunistring when there is actually none.
This avoids libunistring detection in buildbot the the need
for dependency.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'net/wget/Makefile')
-rw-r--r-- | net/wget/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/wget/Makefile b/net/wget/Makefile index deb9ce6de..6ee3f2f9a 100644 --- a/net/wget/Makefile +++ b/net/wget/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=wget PKG_VERSION:=1.19.2 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@GNU/$(PKG_NAME) @@ -66,6 +66,7 @@ endef CONFIGURE_ARGS+= \ --disable-rpath \ --disable-iri \ + --with-included-libunistring \ --without-libuuid CONFIGURE_VARS += \ |