tazpkg diff modules/flavor @ rev 846

Remove "busybox" "prefixes" (thanks llev)
We used "busybox wget", etc. to be sure we called Busybox's "wget", not any other "wget". Workaround already done in "getenv" module.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Oct 09 13:14:01 2015 +0300 (2015-10-09)
parents d6cbd0c5f273
children 50421cb50644
line diff
     1.1 --- a/modules/flavor	Mon Oct 05 03:53:47 2015 +0300
     1.2 +++ b/modules/flavor	Fri Oct 09 13:14:01 2015 +0300
     1.3 @@ -19,7 +19,7 @@
     1.4  	case "$1" in
     1.5  		# Mirror URL can have a trailing slash or not.
     1.6  		http://* | https://* | ftp://*)
     1.7 -			busybox wget -c -q -T 30 -U $UA ${1%/}/$2 2>/dev/null && break ;;
     1.8 +			wget -c -q -T 30 -U $UA ${1%/}/$2 2>/dev/null && break ;;
     1.9  		*)
    1.10  			ln -sf ${1%/}/$2 . && break ;;
    1.11  	esac