comparison network/wget/wget.sh @ 831:ae55d9077f70

vanilla: add runtime depend on core/gettext
author David Demelier <markand@malikania.fr>
date Fri, 23 Aug 2019 08:24:47 +0200
parents b0fd9c97761e
children a133976e0783
comparison
equal deleted inserted replaced
830:c080ec1c5226 831:ae55d9077f70
33 : ${SSL:=gnutls} # upstream default 33 : ${SSL:=gnutls} # upstream default
34 : ${NLS:=yes} 34 : ${NLS:=yes}
35 : ${UUID:=yes} 35 : ${UUID:=yes}
36 36
37 if [ "$NLS" = "yes" ]; then 37 if [ "$NLS" = "yes" ]; then
38 PKGDEPENDS="core/gettext:build $PKGDEPENDS" 38 PKGDEPENDS="core/gettext $PKGDEPENDS"
39 with_nls="--enable-nls" 39 with_nls="--enable-nls"
40 else 40 else
41 with_nls="--disable-nls" 41 with_nls="--disable-nls"
42 fi 42 fi
43 43