diff options
author | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2018-12-05 17:58:21 -0200 |
---|---|---|
committer | tripolar <tripolar@users.noreply.github.com> | 2018-12-06 21:52:54 +0100 |
commit | 99b049c8f31dd6c9d05e8e8a41ece5440359806a (patch) | |
tree | 2501b5635a87e9af1683d0b477ee9d9a4f008246 /net | |
parent | deaa3835c9796c6fecdb688fd7d1d774274c8970 (diff) |
wget: disable libpcre2
libpcre2 is picked over libpcre by wget's configure
Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
Diffstat (limited to 'net')
-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 d3a67b25b..423e66303 100644 --- a/net/wget/Makefile +++ b/net/wget/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=wget PKG_VERSION:=1.20 -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 \ + --disable-pcre2 \ --with-included-libunistring \ --without-libuuid \ --without-libpsl |