aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test cases/common/117 custom target capture/meson.build12
1 files changed, 6 insertions, 6 deletions
diff --git a/test cases/common/117 custom target capture/meson.build b/test cases/common/117 custom target capture/meson.build
index 6c19752..fa59d51 100644
--- a/test cases/common/117 custom target capture/meson.build
+++ b/test cases/common/117 custom target capture/meson.build
@@ -7,10 +7,10 @@ python = find_program('python3')
comp = '@0@/@1@'.format(meson.current_source_dir(), 'my_compiler.py')
mytarget = custom_target('bindat',
-output : 'data.dat',
-input : 'data_source.txt',
-capture : true,
-command : [python, comp, '@INPUT@'],
-install : true,
-install_dir : 'subdir'
+ output : 'data.dat',
+ input : 'data_source.txt',
+ capture : true,
+ command : [python, comp, '@INPUT@'],
+ install : true,
+ install_dir : 'subdir'
)