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