30 lines
955 B
Diff
30 lines
955 B
Diff
|
From e0c50ecb84490fdc37e1501be018a332f27166d8 Mon Sep 17 00:00:00 2001
|
||
|
From: Benjamin Berg <bberg@redhat.com>
|
||
|
Date: Mon, 16 Dec 2019 11:36:28 +0100
|
||
|
Subject: [PATCH 135/181] meson: Add missing dependency on fp-enum.h for
|
||
|
private library
|
||
|
|
||
|
The private library needs to indirectly include fp-enum.h. This
|
||
|
dependency was not listed anyway, resulting in a race condition during
|
||
|
the build process.
|
||
|
---
|
||
|
libfprint/meson.build | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/libfprint/meson.build b/libfprint/meson.build
|
||
|
index 61fd506..74908f4 100644
|
||
|
--- a/libfprint/meson.build
|
||
|
+++ b/libfprint/meson.build
|
||
|
@@ -205,7 +205,7 @@ libnbis = static_library('nbis',
|
||
|
install: false)
|
||
|
|
||
|
libfprint_private = static_library('fprint-private',
|
||
|
- sources: libfprint_private_sources + fpi_enums,
|
||
|
+ sources: libfprint_private_sources + fpi_enums + [ fp_enums_h ],
|
||
|
dependencies: deps,
|
||
|
link_with: libnbis,
|
||
|
install: false)
|
||
|
--
|
||
|
2.24.1
|
||
|
|