pkg: do not build concurrently
This commit is contained in:
parent
77cf00bd4b
commit
0fb50ebeda
18
pkg/pkg.mk
18
pkg/pkg.mk
@ -4,13 +4,20 @@
|
||||
PKG_DIR?=$(CURDIR)
|
||||
PKG_BUILDDIR?=$(BINDIRBASE)/pkg/$(BOARD)/$(PKG_NAME)
|
||||
|
||||
.PHONY: git-download
|
||||
.PHONY: git-download clean
|
||||
|
||||
ifneq (,$(wildcard $(PKG_DIR)/patches))
|
||||
git-download: $(PKG_BUILDDIR)/.git-patched
|
||||
else
|
||||
git-download: $(PKG_BUILDDIR)/.git-downloaded
|
||||
endif
|
||||
|
||||
GIT_APPLY_PATCHES:=if test -d "$(PKG_DIR)"/patches; then \
|
||||
git -C "$(PKG_BUILDDIR)" am --ignore-whitespace "$(PKG_DIR)"/patches/*.patch; \
|
||||
fi
|
||||
ifneq (,$(wildcard $(PKG_DIR)/patches))
|
||||
$(PKG_BUILDDIR)/.git-patched: $(PKG_BUILDDIR)/.git-downloaded $(PKG_DIR)/Makefile $(PKG_DIR)/patches/*.patch
|
||||
git -C $(PKG_BUILDDIR) checkout -f $(PKG_VERSION)
|
||||
git -C $(PKG_BUILDDIR) am --ignore-whitespace "$(PKG_DIR)"/patches/*.patch
|
||||
touch $@
|
||||
endif
|
||||
|
||||
$(PKG_BUILDDIR)/.git-downloaded:
|
||||
rm -Rf $(PKG_BUILDDIR)
|
||||
@ -21,9 +28,10 @@ $(PKG_BUILDDIR)/.git-downloaded:
|
||||
|
||||
clean::
|
||||
@test -d $(PKG_BUILDDIR) && { \
|
||||
rm $(PKG_BUILDDIR)/.git-patched ; \
|
||||
git -C $(PKG_BUILDDIR) clean -f ; \
|
||||
git -C $(PKG_BUILDDIR) checkout "$(PKG_VERSION)"; \
|
||||
$(GIT_APPLY_PATCHES) ; \
|
||||
make $(PKG_BUILDDIR)/.git-patched ; \
|
||||
touch $(PKG_BUILDDIR)/.git-downloaded ; \
|
||||
} > /dev/null 2>&1 || true
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user