[Spice-commits] tests/meson.build

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Mon Jan 13 11:26:04 UTC 2020


 tests/meson.build |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit 3e0eb9e056cea519d68b58ba3b2d63681f6d69e3
Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Fri Jan 3 17:15:21 2020 +0100

    build: Avoid line continuation for compatibility with older Meson
    
    This fixes building spice-gtk on Debian 10.
    
    See https://github.com/mesonbuild/meson/issues/4720.
    
    Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
    Acked-by: Uri Lublin <uril at redhat.com>

diff --git a/tests/meson.build b/tests/meson.build
index 57bd2cc..bc5be5f 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]


More information about the Spice-commits mailing list