diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2025-01-09 11:48:24 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2025-01-09 11:50:56 +0100 |
commit | 12db3c8436211c587cc8d8249482cad48a06fbfe (patch) | |
tree | 436a7fa13e8088b6341f5418e2718c445ccc9741 /package/elfutils/patches/patch-Makefile_am | |
parent | 56cd779a7a48465714d69b4a22ae66ee894b15ce (diff) |
use elfutils systemwide
libelf is deprecated and does not build with gcc-14.
Use elfutils instead as drop-in replacement.
Add patches from Buildroot to disable progs, which use glibc
specific functions.
Diffstat (limited to 'package/elfutils/patches/patch-Makefile_am')
-rw-r--r-- | package/elfutils/patches/patch-Makefile_am | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/package/elfutils/patches/patch-Makefile_am b/package/elfutils/patches/patch-Makefile_am new file mode 100644 index 000000000..579e76113 --- /dev/null +++ b/package/elfutils/patches/patch-Makefile_am @@ -0,0 +1,16 @@ +--- elfutils-0.189.orig/Makefile.am 2023-03-03 16:42:26.000000000 +0100 ++++ elfutils-0.189/Makefile.am 2025-01-08 20:12:14.302360288 +0100 +@@ -26,8 +26,12 @@ AM_MAKEFLAGS = --no-print-directory + + pkginclude_HEADERS = version.h + ++if ENABLE_PROGS ++PROGS_SUBDIR = src ++endif ++ + SUBDIRS = config lib libelf libcpu backends libebl libdwelf libdwfl libdw \ +- libasm debuginfod src po doc tests ++ libasm debuginfod $(PROGS_SUBDIR) po doc tests + + EXTRA_DIST = elfutils.spec GPG-KEY NOTES CONTRIBUTING \ + COPYING COPYING-GPLV2 COPYING-LGPLV3 |