1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-02-17 15:04:42 +02:00

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.
This commit is contained in:
Alan Post 2010-10-08 22:14:30 -06:00
parent af01e0497c
commit d340b5b533

View File

@ -39,7 +39,7 @@ define PatchDir/Quilt
endef endef
define PatchDir/Default 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 \ if [ -s "$(2)/series" ]; then \
$(call filter_series,$(2)/series) | xargs -n1 \ $(call filter_series,$(2)/series) | xargs -n1 \
$(PATCH) "$(1)" "$(2)"; \ $(PATCH) "$(1)" "$(2)"; \