mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-05 18:08:03 +02:00
Fix meson deprecation warning
test/meson.build:663: WARNING: Project targets '>= 1.3.0' but uses feature deprecated since '0.64.0': copy arg in configure_file. Use fs.copyfile instead
This commit is contained in:
parent
f0a651e1ac
commit
4f38b502e5
1 changed files with 2 additions and 1 deletions
|
|
@ -658,9 +658,10 @@ exe = executable('cairo-test-suite', [cairo_test_suite_sources, test_sources, ca
|
|||
libpdiff_dep],
|
||||
)
|
||||
|
||||
fs = import('fs')
|
||||
build_dir_files = ['completion.bash', 'index.html', 'testtable.js', 'view-test-results.py']
|
||||
foreach file : build_dir_files
|
||||
configure_file(input: file, output : file, copy: true)
|
||||
fs.copyfile(file)
|
||||
endforeach
|
||||
|
||||
if build_machine.system() != 'windows'
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue