From d340b5b5332e0c07b53c46040a11b28fc982bafc Mon Sep 17 00:00:00 2001 From: Alan Post Date: Fri, 8 Oct 2010 22:14:30 -0600 Subject: [PATCH] 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. --- include/quilt.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/quilt.mk b/include/quilt.mk index 6c4839ba4..598c6f8e1 100644 --- a/include/quilt.mk +++ b/include/quilt.mk @@ -39,7 +39,7 @@ define PatchDir/Quilt endef define PatchDir/Default - @if [ -d "$(2)" -a "$$$$(ls $(2) | wc -l)" -gt 0 ]; then \ + @if [ -d "$(2)" -a "$$$$(ls $(2) 2>/dev/null | wc -l)" -gt 0 ]; then \ if [ -s "$(2)/series" ]; then \ $(call filter_series,$(2)/series) | xargs -n1 \ $(PATCH) "$(1)" "$(2)"; \