diff options
| author | Xavier Claessens <xavier.claessens@collabora.com> | 2021-02-09 09:26:12 -0500 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-02-09 19:32:20 +0200 |
| commit | 2a8d6690f73ec6415c2ee592e856b3b6de7cfb02 (patch) | |
| tree | 81f5501cbe758c3ae3725320fe2e0e7f2a5b10ce /test cases | |
| parent | a155935d24a8c7e80a7849c83153cc864f11c8b0 (diff) | |
| download | meson-2a8d6690f73ec6415c2ee592e856b3b6de7cfb02.tar.gz | |
backends: Fix custom_target() with configure_file() exe
Diffstat (limited to 'test cases')
| -rw-r--r-- | test cases/common/52 run target/meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test cases/common/52 run target/meson.build b/test cases/common/52 run target/meson.build index 49e8d75b0..d1964e89f 100644 --- a/test cases/common/52 run target/meson.build +++ b/test cases/common/52 run target/meson.build @@ -65,11 +65,14 @@ conf = configure_file( configuration: configuration_data() ) - run_target('configure_script', command : conf ) +custom_target('configure_script_ct', + command: conf, + output: 'dummy.txt', + capture: true) # Target names that clash with potential builtin functionality. run_target('ctags', |
