From 4c68e4b16b22a8eb9c2dc39086f25c2d1375d049 Mon Sep 17 00:00:00 2001 From: Brandon Maier Date: Sat, 29 Jul 2023 19:53:26 +0000 Subject: libfdt: fix library version to match project version Build the libfdt with the correct version number by pulling the version from the top-level project. Change as suggested from https://github.com/dgibson/dtc/pull/95#issuecomment-1546933095 Signed-off-by: Brandon Maier Signed-off-by: David Gibson --- libfdt/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libfdt/meson.build b/libfdt/meson.build index e1bf083..2ea1448 100644 --- a/libfdt/meson.build +++ b/libfdt/meson.build @@ -28,7 +28,7 @@ endif link_args += version_script libfdt = library( 'fdt', sources, - version: '1.6.0', + version: meson.project_version(), link_args: link_args, link_depends: 'version.lds', install: true, -- cgit v1.1