3869a62c8e
Resolves: RHEL-65743
26 lines
777 B
Diff
26 lines
777 B
Diff
From 970acbbcf5a25983b593ef781885c81f8d55cee2 Mon Sep 17 00:00:00 2001
|
|
From: Christian Hergert <chergert@redhat.com>
|
|
Date: Fri, 11 Oct 2024 11:26:13 -0700
|
|
Subject: [PATCH 09/18] 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
|
|
|