meson: fix build with Meson 0.49.2
authorTim-Philipp Müller <tim@centricular.com>
Tue, 17 Sep 2019 10:58:16 +0000 (11:58 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Tue, 17 Sep 2019 10:58:16 +0000 (11:58 +0100)
The parser didn't seem to handle line continuations properly back then.

tests/meson.build

index 91fc76f..8602fd4 100644 (file)
@@ -85,9 +85,7 @@ if gst_dep.found()
   endif
 endif
 
-if find_program('sh', required : false).found() and \
-   find_program('dd', required : false).found() and \
-   find_program('diff', required : false).found()
+if find_program('sh', required : false).found() and find_program('dd', required : false).found() and find_program('diff', required : false).found()
   test('test-pseudotcp-random', find_program('test-pseudotcp-random.sh'),
        args: test_pseudotcp,
        env: tenv)