mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-11 13:50:48 -05:00
meson: Fix Bison arguments
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
This commit is contained in:
parent
b4ab5e5c88
commit
1d556b56cc
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ flex = generator(find_program('flex'),
|
||||||
)
|
)
|
||||||
bison = generator(find_program('bison'),
|
bison = generator(find_program('bison'),
|
||||||
output: [ '@BASENAME@.c', '@BASENAME@.h' ],
|
output: [ '@BASENAME@.c', '@BASENAME@.h' ],
|
||||||
arguments: [ '-y', '@INPUT@', '--defines=@OUTPUT1@', '--output=@OUTPUT0@' ]
|
arguments: [ '-d', '@INPUT@', '--defines=@OUTPUT1@', '--output=@OUTPUT0@' ]
|
||||||
)
|
)
|
||||||
|
|
||||||
rofi_sources = files(
|
rofi_sources = files(
|
||||||
|
|
Loading…
Reference in a new issue