1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 09:41:38 +03:00

proper series file support for regular packages

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9059 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-09-29 00:25:38 +00:00
parent fffefa41d8
commit b15366186d

View File

@ -44,7 +44,12 @@ ifneq ($(QUILT),)
else
define Build/Patch/Default
@if [ -d $(PATCH_DIR) -a "$$$$(ls $(PATCH_DIR) | wc -l)" -gt 0 ]; then \
$(PATCH) $(PKG_BUILD_DIR) $(PATCH_DIR); \
if [ -f $(PATCH_DIR)/series ]; then \
grep -vE '^#' $(PATCH_DIR)/series | xargs -n1 \
$(PATCH) $(PKG_BUILD_DIR) $(PATCH_DIR); \
else \
$(PATCH) $(PKG_BUILD_DIR) $(PATCH_DIR); \
fi; \
fi
endef
endif