1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: kdumpid: add libaddrxlat.la to LIBS
Since util.c calls some functions from libaddrxlat, let's link against that
library explicitly instead of relying on its being added as a dependency of
libkdumpfile.
Author: Petr Tesarik <petr@tesarici.cz>
Origin: https://github.com/ptesarik/libkdumpfile/commit/d5c187620382c752bdd032bcc354f515a2eda44f
Bug: https://github.com/ptesarik/libkdumpfile/issues/87
Last-Update: 2025-02-24
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/tools/kdumpid/Makefile.am
+++ b/tools/kdumpid/Makefile.am
@@ -25,6 +25,7 @@ AM_CPPFLAGS = -I$(top_builddir)/include
LIBS = \
$(top_builddir)/src/kdumpfile/libkdumpfile.la \
+ $(top_builddir)/src/addrxlat/libaddrxlat.la \
$(DIS_ASM_LIBS)
kdumpid_SOURCES = \
|