f3ac1f58a2
We now have a branch upstream for tracking el10 patches which makes this a lot easier to maintain. This updates to using that branch as a diff upon 47.1. Resolves: RHEL-65743
26 lines
777 B
Diff
26 lines
777 B
Diff
From 2c89e348dd469913cf80a1dc4f003aaf5ae7c2ba Mon Sep 17 00:00:00 2001
|
|
From: Christian Hergert <chergert@redhat.com>
|
|
Date: Fri, 11 Oct 2024 11:26:13 -0700
|
|
Subject: [PATCH 10/31] libsysprof: fix building with -Ddebuginfod=auto
|
|
|
|
---
|
|
src/libsysprof/meson.build | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/libsysprof/meson.build b/src/libsysprof/meson.build
|
|
index b4e58078..ce6e37f2 100644
|
|
--- a/src/libsysprof/meson.build
|
|
+++ b/src/libsysprof/meson.build
|
|
@@ -153,7 +153,7 @@ libsysprof_private_sources = [
|
|
'timsort/gtktimsort.c',
|
|
]
|
|
|
|
-if debuginfod_dep.found() and get_option('debuginfod').enabled()
|
|
+if debuginfod_dep.found()
|
|
libsysprof_private_sources += [
|
|
'sysprof-debuginfod-symbolizer.c',
|
|
'sysprof-debuginfod-task.c'
|
|
--
|
|
2.45.2
|
|
|