meson: bump required version to 0.47 for copy directive

feature/tap-sh
Ariadne Conill 2019-07-12 08:20:05 -05:00
parent 107ad34f8f
commit 061627f091
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
project('pkgconf', 'c',
version : '1.6.3',
license : 'ISC',
meson_version : '>=0.40')
meson_version : '>=0.47')
cc = meson.get_compiler('c')

View File

@ -18,6 +18,6 @@ tests = [
# yuck
foreach test : tests
configure_file(input: test + '.sh', output: test, configuration: configuration_data())
configure_file(input: test + '.sh', output: test, copy: true)
run_command('chmod', '755', join_paths(meson.build_root(), 'tests', test))
endforeach