1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-23 21:37:10 +02:00

separate conditions rather than ignoring error, thx @werner

I've checked the rest of include/ for other cases of this error, but
didn't find any.
This commit is contained in:
Alan Post 2010-10-09 10:41:05 -06:00
parent d340b5b533
commit b48d96a65e

View File

@ -39,7 +39,7 @@ define PatchDir/Quilt
endef
define PatchDir/Default
@if [ -d "$(2)" -a "$$$$(ls $(2) 2>/dev/null | wc -l)" -gt 0 ]; then \
@if [ -d "$(2)" ] && [ "$$$$(ls $(2) | wc -l)" -gt 0 ]; then \
if [ -s "$(2)/series" ]; then \
$(call filter_series,$(2)/series) | xargs -n1 \
$(PATCH) "$(1)" "$(2)"; \