aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test cases/fortran/21 install static/meson.build2
-rw-r--r--test cases/fortran/21 install static/subprojects/static_hello/meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/test cases/fortran/21 install static/meson.build b/test cases/fortran/21 install static/meson.build
index a91613f..14485f5 100644
--- a/test cases/fortran/21 install static/meson.build
+++ b/test cases/fortran/21 install static/meson.build
@@ -9,7 +9,7 @@ static_dep = dependency('static_hello', fallback: ['static_hello', 'static_hello
mainsrc = 'main_lib.f90'
mainsrc = configure_file(
- command: [find_program('cp'), '@INPUT@', '@OUTPUT@'],
+ copy: true,
input: mainsrc,
output: 'main_lib_output.F90'
)
diff --git a/test cases/fortran/21 install static/subprojects/static_hello/meson.build b/test cases/fortran/21 install static/subprojects/static_hello/meson.build
index 7edca39..5e13bae 100644
--- a/test cases/fortran/21 install static/subprojects/static_hello/meson.build
+++ b/test cases/fortran/21 install static/subprojects/static_hello/meson.build
@@ -2,7 +2,7 @@ project('static-hello', 'fortran')
# staticlibsource = 'static_hello.f90'
staticlibsource = configure_file(
- command: [find_program('cp'), '@INPUT@', '@OUTPUT@'],
+ copy: true,
input: 'static_hello.f90',
output: 'static_hello_output.F90'
)