mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 19:44:05 +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:
parent
d340b5b533
commit
b48d96a65e
@ -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)"; \
|
||||
|
Loading…
Reference in New Issue
Block a user