95.patch 743 B

123456789101112131415161718192021222324
  1. From 723545ebe9933b90ea58dc125e4987c6bcb04ade Mon Sep 17 00:00:00 2001
  2. From: Anatol Pomozov <anatol.pomozov@gmail.com>
  3. Date: Tue, 2 May 2023 13:34:24 -0700
  4. Subject: [PATCH] Fix version in libfdt/meson.build
  5. Currently meson generates file /usr/lib/libfdt.so.1.6.0 that does not match Makefile build version.
  6. ---
  7. libfdt/meson.build | 2 +-
  8. 1 file changed, 1 insertion(+), 1 deletion(-)
  9. diff --git a/libfdt/meson.build b/libfdt/meson.build
  10. index 240bdf41..240dab9e 100644
  11. --- a/libfdt/meson.build
  12. +++ b/libfdt/meson.build
  13. @@ -18,7 +18,7 @@ sources = files(
  14. libfdt = library(
  15. 'fdt', sources,
  16. - version: '1.6.0',
  17. + version: '1.7.0',
  18. link_args: ['-Wl,--no-undefined', version_script],
  19. link_depends: 'version.lds',
  20. install: true,