summaryrefslogtreecommitdiffhomepage
path: root/vars/musl.vars
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2019-01-19 14:38:21 +0000
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2019-01-19 15:28:07 +0000
commitd279a98da1aae886a4b4201122ce5614a185f008 (patch)
tree0800eca320fced59a554b02507cc009c555407f3 /vars/musl.vars
parente402f659b8e40a27d6ce64ea1a8f08be9f28c848 (diff)
downloadmidipix_build-d279a98da1aae886a4b4201122ce5614a185f008.tar.bz2
midipix_build-d279a98da1aae886a4b4201122ce5614a185f008.tar.xz
etc/build.usage, subr/build_{args,checks}.subr: merges -c into -C as -C prefix.
etc/build.usage, subr/build_{args,init}.subr: merges -[46N] into -F as ipv4|ipv6|offline. subr/ex_rtl_fetch.subr: honour ${{ARG_FETCH_FORCE,DEFAULT_GIT_ARGS}}. subr/pkg_install_strip.subr: correctly strip non-release build binaries. subr/pkg_install_strip.subr:pkg_install_strip(): honour ${ARG_DEBUG_MINIPIX}. vars/env.vars, subr/pkg_fetch_{download,git,wget}.subr: merges fetch_{git,wget} into fetch_download. vars/midipix.vars: adds ${DEFAULT_GIT_ARGS}. vars/{musl,python[23]{,_host}}.vars: updated concerning fetch_download.
Diffstat (limited to 'vars/musl.vars')
-rw-r--r--vars/musl.vars22
1 files changed, 11 insertions, 11 deletions
diff --git a/vars/musl.vars b/vars/musl.vars
index 97ee5cc5..5b2b984d 100644
--- a/vars/musl.vars
+++ b/vars/musl.vars
@@ -2,22 +2,22 @@
# set -o errexit -o noglob are assumed.
#
-pkgp_mmglue_fetch_git() {
+pkgp_mmglue_fetch_download() {
ex_rtl_fileop rm "${PKG_BASE_DIR}/mmglue";
ex_rtl_fetch_urls_git "${PKG_BASE_DIR}/build" "mmglue=${DEFAULT_GITROOT}/mmglue@main";
- ex_pkg_state_set "${PKG_NAME}" fetch -extract;
+ ex_pkg_state_set "${PKG_NAME}" fetch_download -fetch_extract;
};
-pkg_musl_no_complex_host_fetch_git() {
- pkgp_mmglue_fetch_git
-}
+pkg_musl_full_fetch_download() {
+ pkgp_mmglue_fetch_download;
+};
-pkg_musl_full_host_fetch_git() {
- pkgp_mmglue_fetch_git
-}
+pkg_musl_full_host_fetch_download() {
+ pkgp_mmglue_fetch_download;
+};
-pkg_musl_full_fetch_git() {
- pkgp_mmglue_fetch_git
-}
+pkg_musl_no_complex_host_fetch_download() {
+ pkgp_mmglue_fetch_download;
+};
# vim:filetype=sh