mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
s3:wscript: fix flex and bison detection
conf.env['BISON'] and conf.env['FLEX'] return lists. Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Noel Power <npower@samba.org>
This commit is contained in:
parent
f52e402065
commit
2f87661c56
@ -1653,7 +1653,7 @@ main() {
|
||||
Logs.info("Checking for bison")
|
||||
bison.configure(conf)
|
||||
if conf.env['BISON']:
|
||||
conf.CHECK_COMMAND('%s --version | head -n1' % conf.env.BISON,
|
||||
conf.CHECK_COMMAND('%s --version | head -n1' % conf.env.BISON[0],
|
||||
msg='Using bison version',
|
||||
define=None,
|
||||
on_target=False)
|
||||
@ -1662,7 +1662,7 @@ main() {
|
||||
conf.find_program('flex', var='FLEX')
|
||||
if conf.env['FLEX']:
|
||||
conf.env.FLEXFLAGS = ['-t']
|
||||
conf.CHECK_COMMAND('%s --version' % conf.env.FLEX,
|
||||
conf.CHECK_COMMAND('%s --version' % conf.env.FLEX[0],
|
||||
msg='Using flex version',
|
||||
define=None,
|
||||
on_target=False)
|
||||
|
Loading…
Reference in New Issue
Block a user