diff options
author | Felix Fietkau <nbd@nbd.name> | 2023-11-01 19:20:16 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2023-11-01 19:20:35 +0100 |
commit | f95a8f876926969b3643f43cf08674cf153e22e8 (patch) | |
tree | ba5b75afc299a2be5af2b4844135a6fdbdafbc99 /tools/elfutils | |
parent | 17a5f1c81f8b72c0f684ea05bd1acac6fa49d188 (diff) | |
download | openwrt-f95a8f876926969b3643f43cf08674cf153e22e8.tar.gz openwrt-f95a8f876926969b3643f43cf08674cf153e22e8.tar.bz2 openwrt-f95a8f876926969b3643f43cf08674cf153e22e8.zip |
tools/elfutils: fix missing _ in auxv info alias
Fixes dwarves compile issue
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'tools/elfutils')
-rw-r--r-- | tools/elfutils/patches/100-portability.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/elfutils/patches/100-portability.patch b/tools/elfutils/patches/100-portability.patch index a0c7d74bb3..0d650549ee 100644 --- a/tools/elfutils/patches/100-portability.patch +++ b/tools/elfutils/patches/100-portability.patch @@ -291,7 +291,7 @@ case DW_TAG_rvalue_reference_type +#define auxv_info_alias(arch) \ -+ int EBLHOOK_1(arch, auxv_info) (GElf_Xword a_type, const char **name, const char **format) \ ++ int EBLHOOK_1(arch ## _, auxv_info) (GElf_Xword a_type, const char **name, const char **format) \ + { \ + return EBLHOOK(auxv_info)(a_type, name, format); \ + } |