Try to make ragel call ragel5 compatible
This commit is contained in:
parent
dbd9218150
commit
371c9749d7
2
ragel.py
2
ragel.py
|
@ -10,7 +10,7 @@ def rageltaskfun(task):
|
|||
env = task.env
|
||||
ragelbin = env.get_flat('RAGEL')
|
||||
if ragelbin:
|
||||
cmd = '%s -o %s %s' % (ragelbin, task.outputs[0].bldpath(env), task.inputs[0].srcpath(env))
|
||||
cmd = '%s -o %s -C -T1 %s' % (ragelbin, task.outputs[0].bldpath(env), task.inputs[0].srcpath(env))
|
||||
else:
|
||||
src = task.inputs[0].srcpath(env)
|
||||
src = src[:src.rfind('.')] + '.c'
|
||||
|
|
Loading…
Reference in New Issue