Blame SOURCES/0139-meson-List-deps-in-multiple-lines-to-have-better-dif.patch

73b847
From 42b6ce90764b2d9fd18072b8307c2bd200ab54b6 Mon Sep 17 00:00:00 2001
73b847
From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= <mail@3v1n0.net>
73b847
Date: Mon, 16 Dec 2019 18:46:07 +0100
73b847
Subject: [PATCH 139/181] meson: List deps in multiple lines, to have better
73b847
 diffs on changes
73b847
73b847
---
73b847
 libfprint/meson.build | 9 ++++++++-
73b847
 1 file changed, 8 insertions(+), 1 deletion(-)
73b847
73b847
diff --git a/libfprint/meson.build b/libfprint/meson.build
73b847
index 781ea81..a693f80 100644
73b847
--- a/libfprint/meson.build
73b847
+++ b/libfprint/meson.build
73b847
@@ -191,7 +191,14 @@ drivers_sources += configure_file(input: 'empty_file',
73b847
         '\n'.join(drivers_type_list + [] + drivers_type_func)
73b847
     ])
73b847
 
73b847
-deps = [ mathlib_dep, glib_dep, gusb_dep, nss_dep, imaging_dep, gio_dep ]
73b847
+deps = [
73b847
+    gio_dep,
73b847
+    glib_dep,
73b847
+    gusb_dep,
73b847
+    imaging_dep,
73b847
+    mathlib_dep,
73b847
+    nss_dep,
73b847
+]
73b847
 
73b847
 deps += declare_dependency(include_directories: [
73b847
     root_inc,
73b847
-- 
73b847
2.24.1
73b847