diff options
author | Daniel Engberg <daniel.engberg.lists@pyret.net> | 2018-07-24 14:18:00 +0200 |
---|---|---|
committer | Daniel Engberg <daniel.engberg.lists@pyret.net> | 2018-07-24 14:21:01 +0200 |
commit | 89d62c60db2ae85184b3e3093a23a282f5d3ffbf (patch) | |
tree | bf2d2427db906ab931747d8e0e5d9f078deb26e2 /net/wget/Makefile | |
parent | fdc8c1b178d2718dd974066b875f6497d83810d4 (diff) |
wget: Disable libpsl to fix builds on buildbots
Disable libpsl to fix dependency issue on buildbots
http://downloads.lede-project.org/snapshots/faillogs/arm_cortex-a9_neon/packages/wget/ssl/compile.txt
"...
Package wget is missing dependencies for the following libraries:
libpsl.so.5"
Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
Diffstat (limited to 'net/wget/Makefile')
-rw-r--r-- | net/wget/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/wget/Makefile b/net/wget/Makefile index 64a6a08a8..fa03cc60e 100644 --- a/net/wget/Makefile +++ b/net/wget/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=wget PKG_VERSION:=1.19.5 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@GNU/$(PKG_NAME) @@ -67,7 +67,8 @@ CONFIGURE_ARGS+= \ --disable-rpath \ --disable-iri \ --with-included-libunistring \ - --without-libuuid + --without-libuuid \ + --without-libpsl CONFIGURE_VARS += \ ac_cv_header_uuid_uuid_h=no |