mirror of
https://linux.maple.camp/git/ahill/maplelinux-bootstrap.git
synced 2026-02-11 10:13:35 +00:00
21 lines
672 B
Diff
21 lines
672 B
Diff
|
|
--- vanilla/meson.build 2025-12-15 07:50:01.000000000 -0500
|
||
|
|
+++ maple/meson.build 2026-02-06 21:58:53.463319033 -0500
|
||
|
|
@@ -952,7 +952,7 @@
|
||
|
|
have = get_option('use-tty-group')
|
||
|
|
conf.set('USE_TTY_GROUP', have ? 1 : false)
|
||
|
|
|
||
|
|
-bison = find_program('bison')
|
||
|
|
+bison = find_program('byacc')
|
||
|
|
flex = find_program('flex')
|
||
|
|
sed = find_program('sed')
|
||
|
|
|
||
|
|
@@ -960,7 +960,7 @@
|
||
|
|
bison_gen = generator(
|
||
|
|
bison,
|
||
|
|
output : ['@BASENAME@.tab.c', '@BASENAME@.tab.h'],
|
||
|
|
- arguments : ['@INPUT@', '--defines=@OUTPUT1@', '--output=@OUTPUT0@'])
|
||
|
|
+ arguments : ['--defines', '@OUTPUT1@', '--output', '@OUTPUT0@', '@INPUT@'])
|
||
|
|
|
||
|
|
python_program = find_program('python3', 'python', native : true)
|
||
|
|
|