mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
Fix bison input for current build tools, otherwise bison or the compiler
will abort the build. (by Andreas)
This commit is contained in:
parent
4a02013767
commit
03e3d184b2
@ -436,12 +436,12 @@ term:
|
||||
;
|
||||
|
||||
break_command:
|
||||
QUITBIRD { $$ = F_QUITBIRD }
|
||||
| ACCEPT { $$ = F_ACCEPT }
|
||||
| REJECT { $$ = F_REJECT }
|
||||
| ERROR { $$ = F_ERROR }
|
||||
| PRINT { $$ = F_NOP }
|
||||
| PRINTN { $$ = F_NONL }
|
||||
QUITBIRD { $$ = F_QUITBIRD; }
|
||||
| ACCEPT { $$ = F_ACCEPT; }
|
||||
| REJECT { $$ = F_REJECT; }
|
||||
| ERROR { $$ = F_ERROR; }
|
||||
| PRINT { $$ = F_NOP; }
|
||||
| PRINTN { $$ = F_NONL; }
|
||||
;
|
||||
|
||||
print_one:
|
||||
|
Loading…
Reference in New Issue
Block a user