From 8645420963417ffc64d2e88f64935249e0db225c Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 21 Aug 2017 05:51:07 +0200 Subject: add basic support for frosted operating system https://github.com/insane-adding-machines/frosted Rework our architecture selection and os dependent logic a little bit to be cleaner. As only arm is supported, we only modify arm systems to comply with new changeset. --- mk/fetch.mk | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mk/fetch.mk') diff --git a/mk/fetch.mk b/mk/fetch.mk index 636c93154..b6164c03c 100644 --- a/mk/fetch.mk +++ b/mk/fetch.mk @@ -87,6 +87,9 @@ $(1): git clone --progress --depth 1 $${PKG_SITES} $${PKG_NAME}-$${PKG_VERSION} $(DL_TRACE); \ if [ $$$$? -ne 0 ]; then echo "git clone error"; exit 1; fi; \ fi; \ + if [ ! -z "$${PKG_GIT_SUBMODULE}" ]; then \ + (cd $${PKG_NAME}-$${PKG_VERSION}; git submodule update --init --recursive) $(DL_TRACE); \ + fi; \ rm -rf $${PKG_NAME}-$${PKG_VERSION}/.git; \ tar cJf $${PKG_NAME}-$${PKG_VERSION}.tar.xz $${PKG_NAME}-$${PKG_VERSION}; \ touch $$$${filename}.nohash; \ -- cgit v1.2.3