]> granicus.if.org Git - graphviz/commit
build: Use EGREP to generate graphviz_version.h
authorRaphael Kubo da Costa <rakuco@FreeBSD.org>
Mon, 5 Dec 2016 10:53:43 +0000 (11:53 +0100)
committerRaphael Kubo da Costa <rakuco@FreeBSD.org>
Mon, 5 Dec 2016 10:53:43 +0000 (11:53 +0100)
commit0a3f3661db9d6df980f06b808fabb4740edc7304
treefd39484ec900323b6781ed6dab477247909afe82
parent75f84028871115997f46711872a8740f6e3f4b88
build: Use EGREP to generate graphviz_version.h

According to POSIX, '|' only works as an alternation character in grep
when it is extended regular expression mode (egrep, or grep -E).

This is not an issue most of the time because GNU grep accepts it in
non-extended expressions as well, but other grep implementations
adhering to the standard will fail to match the pattern used to generate
graphviz_version.h.

Switching to EGREP (which also requires not escaping the '|'s) makes it
work for all implementations.
Makefile.am