diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2016-12-16 00:37:52 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2016-12-16 20:42:01 +0100 |
commit | 0d37f9f325217a6dc3e396c9227d2a164775f4d9 (patch) | |
tree | 9de9feaa5d63f217dab4f7340a1e08ea35ea7755 /lib/command_parse.y | |
parent | tests: fix mis-fixed format string (diff) | |
download | frr-0d37f9f325217a6dc3e396c9227d2a164775f4d9.tar.xz frr-0d37f9f325217a6dc3e396c9227d2a164775f4d9.zip |
build: fix bison < 3.0 compatibility
bison-2.7.x really wants "foo" for api.prefix while bison-3.0.x really
wants {foo} ... great.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to '')
-rw-r--r-- | lib/command_parse.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/command_parse.y b/lib/command_parse.y index 3dba8f0e8..d2dd5aa5c 100644 --- a/lib/command_parse.y +++ b/lib/command_parse.y @@ -33,7 +33,7 @@ typedef union CMD_YYSTYPE CMD_YYSTYPE; %} %define api.pure full -%define api.prefix {cmd_yy} +/* define api.prefix {cmd_yy} */ /* names for generated header and parser files */ %defines "command_parse.h" |