From 56b8d45079f3a3f1555e0df8a5bbc481b3583b7c Mon Sep 17 00:00:00 2001 From: tmpfile Date: Sat, 15 Jul 2017 11:48:30 -0300 Subject: abuild.in: remove saveas- syntax and fix sourcecheck() As discussed in alpinelinux/aports#1438 saveas- was removed from abuild-fetch.c with https://github.com/alpinelinux/abuild/pull/20 but abuild.in slipped. Also fixes a wget -s instance that's not supported by recent busybox (-s was changed for --spider). /cc @kaniini --- abuild.in | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/abuild.in b/abuild.in index 7f31dbe..dae99b3 100644 --- a/abuild.in +++ b/abuild.in @@ -296,15 +296,11 @@ sourcecheck() { for uri in $source; do is_remote $uri || continue case "$uri" in - saveas-*://*) - uri=${uri#saveas-} - uri=${uri%/*} - ;; *::*) uri=${uri##*::} ;; esac - wget -q -s "$uri" || return 1 + wget --spider -q "$uri" || return 1 done return 0 } @@ -318,7 +314,7 @@ uri_fetch() { is_remote() { case "${1#*::}" in - http://*|ftp://*|https://*|saveas-*://*) + http://*|ftp://*|https://*) return 0;; esac return 1 -- cgit v1.2.3-60-g2f50