On Fri, Oct 08, 2010 at 10:57:26PM -0600, Alan Post wrote:
> I got this patch backwards, here is the correct patch:
> 
> <++> nopatches.diff
> diff --git a/include/quilt.mk b/include/quilt.mk
> index 6c4839b..598c6f8 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)"; \
> <-->
> 

Reviewing this patch on #qi-hardware, I'm not sure why the -d "$(2)"
is not blocking the call to ls, making this patch unnecessary.  Adding
the redirect causes the ls error to go away...

-Alan
-- 
.i ko djuno fi le do sevzi
_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Reply via email to