32 lines
949 B
Diff
32 lines
949 B
Diff
From ee8b921e9169e3f46a5e0e62b2bc583ecebdfe96 Mon Sep 17 00:00:00 2001
|
|
From: Debarshi Ray <debarshir@gnome.org>
|
|
Date: Tue, 31 Aug 2021 18:20:25 +0200
|
|
Subject: [PATCH] utils: Remove unused header
|
|
|
|
The dwarf.h header is no longer used because the old in-tree
|
|
DWARF-parsing code was replaced by the standalone debugedit project
|
|
in commit bcced9e64535bf61. Hence, the build system was modified in
|
|
commit 1600dfb80be808a7 to no longer look for a dwarf.h header outside
|
|
the context of the standalone debugedit code.
|
|
|
|
https://github.com/flatpak/flatpak-builder/pull/414
|
|
---
|
|
src/builder-utils.c | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/src/builder-utils.c b/src/builder-utils.c
|
|
index 38d3b642e5c2..865faf606865 100644
|
|
--- a/src/builder-utils.c
|
|
+++ b/src/builder-utils.c
|
|
@@ -24,7 +24,6 @@
|
|
#include <stdlib.h>
|
|
#include <libelf.h>
|
|
#include <gelf.h>
|
|
-#include <dwarf.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/uio.h>
|
|
#include <stdio.h>
|
|
--
|
|
2.31.1
|
|
|