Merge pull request #9015 from cladmi/pr/pkg/do_not_sign_patches
pkg/pkg.mk: do not sign when applying patches
This commit is contained in:
commit
8d6f5ddfcf
@ -19,10 +19,12 @@ else
|
|||||||
git-download: $(PKG_BUILDDIR)/.git-downloaded
|
git-download: $(PKG_BUILDDIR)/.git-downloaded
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
GITAMFLAGS = --no-gpg-sign --ignore-whitespace
|
||||||
|
|
||||||
ifneq (,$(wildcard $(PKG_DIR)/patches))
|
ifneq (,$(wildcard $(PKG_DIR)/patches))
|
||||||
$(PKG_BUILDDIR)/.git-patched: $(PKG_BUILDDIR)/.git-downloaded $(PKG_DIR)/Makefile $(PKG_DIR)/patches/*.patch
|
$(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) checkout -f $(PKG_VERSION)
|
||||||
git -C $(PKG_BUILDDIR) am --ignore-whitespace "$(PKG_DIR)"/patches/*.patch
|
git -C $(PKG_BUILDDIR) am $(GITAMFLAGS) "$(PKG_DIR)"/patches/*.patch
|
||||||
touch $@
|
touch $@
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user