diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-02-17 13:51:01 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-02-17 13:51:01 +0000 |
commit | 467db44962bc51ac5fa0630f012fb37b2486375b (patch) | |
tree | 56ad176a1d9eb2578c625528dc9a8036799baa41 | |
parent | c6263baeb91c5e0c8b02f93ac9abd910a9b96c03 (diff) | |
download | abuild-467db44962bc51ac5fa0630f012fb37b2486375b.tar.gz abuild-467db44962bc51ac5fa0630f012fb37b2486375b.tar.bz2 abuild-467db44962bc51ac5fa0630f012fb37b2486375b.tar.xz abuild-467db44962bc51ac5fa0630f012fb37b2486375b.zip |
abuild: no longer require wget in makedepends if https
we depend on curl instead
-rwxr-xr-x | abuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -187,7 +187,7 @@ default_sanitycheck() { fi md5sums_has ${i##*/} || die "${i##*/} is missing in md5sums" case "$i" in - https://*) makedepends_has wget || die "wget must be in makedepends when source has https://" ;; + https://*) makedepends_has wget && warning "wget no longer need to be in makedepends when source has https://" ;; esac done fi |