Blame SOURCES/0135-meson-Add-missing-dependency-on-fp-enum.h-for-privat.patch

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