summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_fetch_wget.subr
diff options
context:
space:
mode:
Diffstat (limited to 'subr/pkg_fetch_wget.subr')
-rw-r--r--subr/pkg_fetch_wget.subr11
1 files changed, 0 insertions, 11 deletions
diff --git a/subr/pkg_fetch_wget.subr b/subr/pkg_fetch_wget.subr
deleted file mode 100644
index 56fe79d3..00000000
--- a/subr/pkg_fetch_wget.subr
+++ /dev/null
@@ -1,11 +0,0 @@
-#
-# set -o errexit -o noglob are assumed.
-#
-
-pkg_fetch_wget() {
- if [ -n "${PKG_URL}" ]; then
- ex_rtl_fetch_url_wget "${PKG_URL}" "${PKG_SHA256SUM}" "${PKG_FNAME}";
- fi;
-};
-
-# vim:filetype=sh