From: Micah Cowan Date: Tue, 9 Oct 2007 23:18:24 +0000 (-0700) Subject: Ignore failure from "hg id". X-Git-Tag: v1.13~516^2~2 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=2681148154e8f3225140bb6048145d7ea5fb430c Ignore failure from "hg id". --- diff --git a/src/Makefile.am b/src/Makefile.am index ac52ee60..3737088b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -52,7 +52,7 @@ HG_ID = $(shell hg id 2>/dev/null | cut -f 1 -d ' ') .PHONY: version.c version.c: printf '%s' 'const char *version_string = "@VERSION@' > $@ - [ "$(HG_ID)" ] && printf '%s' ' ($(HG_ID))' >> $@ + -[ "$(HG_ID)" ] && printf '%s' ' ($(HG_ID))' >> $@ printf '%s\n' '";' >> $@ check_LIBRARIES = libunittest.a