On Fri, Sep 24, 2010 at 14:46, Wilson Snyder wrote:
> -    $(shell (git describe --dirty 2>/dev/null || echo vunknown) \
> +    $(shell (git describe --dirty 2>/dev/null || git describe 2>/dev/null || 
> echo vunknown) \

probably better to move the stderr outside of the subshell:
       $(shell (git describe --dirty || git describe || echo vunknown)
2>/dev/null \
-mike
_______________________________________________
ccache mailing list
ccache@lists.samba.org
https://lists.samba.org/mailman/listinfo/ccache

Reply via email to