aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-10-01 22:36:51 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2016-10-01 22:36:51 +0300
commitf2df5f55674a00e08ed16a785c23ad56178c5efd (patch)
tree2aaa009ff335a2948d08a23a8c3d0a37f5f3b984
parent24e50b2697410da10e99954cd26c4e41548fca0f (diff)
downloadmeson-f2df5f55674a00e08ed16a785c23ad56178c5efd.zip
meson-f2df5f55674a00e08ed16a785c23ad56178c5efd.tar.gz
meson-f2df5f55674a00e08ed16a785c23ad56178c5efd.tar.bz2
Indent fix.
-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'
)