diff options
author | Iñigo Martínez <inigomartinez@gmail.com> | 2018-12-17 21:13:19 +0100 |
---|---|---|
committer | Iñigo Martínez <inigomartinez@gmail.com> | 2019-01-21 21:18:06 +0100 |
commit | 00eae27361a3b0cc4fdcbad45611367132a10019 (patch) | |
tree | e21984d718a0e30eab4f9d5e90680e0a471e29f8 /test/meson.build | |
parent | bced2bd5c383935c1487e0d72800c6439e5859c8 (diff) | |
download | gvfs-00eae27361a3b0cc4fdcbad45611367132a10019.tar.gz |
build: Fix the parameter order in configure_file
The `install` and `install_dir` parameters must be the last
parameters in the `configure_file` function.
The paremeters have been reordered to fix this issue.
Diffstat (limited to 'test/meson.build')
-rw-r--r-- | test/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/meson.build b/test/meson.build index 271b4a4d..d91a65e3 100644 --- a/test/meson.build +++ b/test/meson.build @@ -10,9 +10,9 @@ if enable_installed_tests configure_file( input: session + '.in', output: session, + configuration: tests_conf, install: true, install_dir: installed_tests_execdir, - configuration: tests_conf, ) all_tests = 'gvfs-all-tests' @@ -20,9 +20,9 @@ if enable_installed_tests configure_file( input: all_tests + '.in', output: all_tests + '.test', + configuration: tests_conf, install: true, install_dir: installed_tests_metadir, - configuration: tests_conf, ) install_subdir( |