Date:2010-10-09 18:41:05 (13 years 5 months ago)
Author:Alan Post
Commit:b48d96a65e576123945bceec429eea7c899df699
Message: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.
Files: include/quilt.mk (1 diff)

Change Details

include/quilt.mk
3939endef
4040
4141define PatchDir/Default
42    @if [ -d "$(2)" -a "$$$$(ls $(2) 2>/dev/null | wc -l)" -gt 0 ]; then \
42    @if [ -d "$(2)" ] && [ "$$$$(ls $(2) | wc -l)" -gt 0 ]; then \
4343        if [ -s "$(2)/series" ]; then \
4444            $(call filter_series,$(2)/series) | xargs -n1 \
4545                $(PATCH) "$(1)" "$(2)"; \

Archive Download the corresponding diff file



interactive