check for empty patch directories

SVN-Revision: 5086
This commit is contained in:
Felix Fietkau 2006-10-14 15:09:03 +00:00
parent 688443a803
commit 6779edb40e
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ endef
ifneq ($(strip $(PKG_UNPACK)),)
define Build/Prepare/Default
$(PKG_UNPACK)
@if [ -d ./patches ]; then \
@if [ -d ./patches -a "$$$$(ls ./patches | wc -l)" -gt 0 ]; then \
$(PATCH) $(PKG_BUILD_DIR) ./patches; \
fi
endef