Browse Source

tools/elfutils: fix missing _ in auxv info alias

Fixes dwarves compile issue

Signed-off-by: Felix Fietkau <[email protected]>
Felix Fietkau 1 year ago
parent
commit
f95a8f8769
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/elfutils/patches/100-portability.patch

+ 1 - 1
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); \
 +	}