From 5216f3f1bbb70aef463b6cd78dbbb0f4c4c71606 Mon Sep 17 00:00:00 2001 From: Rob Herring Date: Wed, 10 Nov 2021 18:33:29 -0600 Subject: [PATCH] libfdt: Add static lib to meson build The meson build is not building the static libfdt, so add it. Signed-off-by: Rob Herring Message-Id: <20211111003329.2347536-1-robh@kernel.org> Reviewed-by: Simon Glass Tested-by: Simon Glass Signed-off-by: David Gibson --- libfdt/meson.build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libfdt/meson.build b/libfdt/meson.build index 0307ffb..71f29b6 100644 --- a/libfdt/meson.build +++ b/libfdt/meson.build @@ -24,6 +24,11 @@ libfdt = library( install: true, ) +libfdt_a = static_library( + 'fdt', sources, + install: true, +) + libfdt_inc = include_directories('.') libfdt_dep = declare_dependency(