[Spice-devel] [PATCH client] build: Avoid line continuation for compatibility with older Meson
Francois Gouget
fgouget at codeweavers.com
Fri Jan 3 16:15:21 UTC 2020
This fixes building spice-gtk on Debian 10.
Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
---
See https://github.com/mesonbuild/meson/issues/4720
tests/meson.build | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/tests/meson.build b/tests/meson.build
index 57bd2cc5..bc5be5fd 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -23,9 +23,8 @@ endif
# create a static library from a shared one extracting all objects
# this allows to rewrite part of it if necessary for mocking
-test_lib = \
- static_library('test-lib',
- objects : spice_client_glib_lib.extract_all_objects())
+test_lib = static_library('test-lib',
+ objects : spice_client_glib_lib.extract_all_objects())
foreach src : tests_sources
name = 'test- at 0@'.format(src).split('.')[0]
--
2.20.1
More information about the Spice-devel
mailing list