proper series file support for regular packages
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9059 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
c1e4663769
commit
ccff8348de
|
@ -44,7 +44,12 @@ ifneq ($(QUILT),)
|
||||||
else
|
else
|
||||||
define Build/Patch/Default
|
define Build/Patch/Default
|
||||||
@if [ -d $(PATCH_DIR) -a "$$$$(ls $(PATCH_DIR) | wc -l)" -gt 0 ]; then \
|
@if [ -d $(PATCH_DIR) -a "$$$$(ls $(PATCH_DIR) | wc -l)" -gt 0 ]; then \
|
||||||
|
if [ -f $(PATCH_DIR)/series ]; then \
|
||||||
|
grep -vE '^#' $(PATCH_DIR)/series | xargs -n1 \
|
||||||
$(PATCH) $(PKG_BUILD_DIR) $(PATCH_DIR); \
|
$(PATCH) $(PKG_BUILD_DIR) $(PATCH_DIR); \
|
||||||
|
else \
|
||||||
|
$(PATCH) $(PKG_BUILD_DIR) $(PATCH_DIR); \
|
||||||
|
fi; \
|
||||||
fi
|
fi
|
||||||
endef
|
endef
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue