Date:2010-10-09 06:14:30 (13 years 5 months ago)
Author:Alan Post
Commit:d340b5b5332e0c07b53c46040a11b28fc982bafc
Message:silence error when package has no patches directory.

make was reporting an error from ls:

ls: cannot access ./patches: No such file or directory

for any package that didn't have a patches directory. Hide this
error, as it isn't important.
Files: include/quilt.mk (1 diff)

Change Details

include/quilt.mk
3939endef
4040
4141define PatchDir/Default
42    @if [ -d "$(2)" -a "$$$$(ls $(2) | wc -l)" -gt 0 ]; then \
42    @if [ -d "$(2)" -a "$$$$(ls $(2) 2>/dev/null | 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