diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2016-11-29 14:45:49 +0100 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2016-11-29 14:46:54 +0100 |
| commit | 0d4aa1b1864dc8f7cc8a210c15b0302f14f0dcb9 (patch) | |
| tree | 2070f9a055ec949c9d2549bddf61da49bdc28e62 | |
| parent | 030204c7b0631fd77b5a62498a59417c61f64bf3 (diff) | |
lib: use traditional yacc empty statement
%empty was added in bison 2.7.1, which seems to not be available on some
of the BSDs by default.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
| -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 6348643b8b..e381507cc3 100644 --- a/lib/command_parse.y +++ b/lib/command_parse.y @@ -198,7 +198,7 @@ sentence_root: WORD ; cmd_token_seq: - %empty + /* empty */ | cmd_token_seq cmd_token ; |
