Tag
Hash :
8f233383
Author :
Date :
2022-08-30T12:43:41
meson: remove useless command that isn't needed The tests/*.sh are executable in the source tree, and don't need to be chmodded after being copied to the build tree.
configure_file(input: 'Kyuafile.in', output: 'Kyuafile', configuration: cdata)
configure_file(input: 'test_env.sh.in', output: 'test_env.sh', configuration: cdata)
tests = [
'basic',
'builtins',
'conflicts',
'framework',
'parser',
'provides',
'regress',
'requires',
'sysroot',
'version'
]
# yuck
foreach test : tests
test_file = configure_file(input: test + '.sh', output: test, copy: true)
endforeach