From d6087ae5e0c1de2555f64d792c144d49bd816920 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 17 Sep 2019 11:58:16 +0100 Subject: [PATCH] meson: fix build with Meson 0.49.2 The parser didn't seem to handle line continuations properly back then. --- tests/meson.build | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/meson.build b/tests/meson.build index 91fc76f..8602fd4 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -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) -- 2.7.4