From: Mark Wielaard Date: Sun, 14 Apr 2019 20:40:53 +0000 (+0200) Subject: backends: riscv_cfi.c had a bad BACKEND define. X-Git-Tag: elfutils-0.177~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6118f9720d42af6758a0a74b7324acd4aed383d;p=thirdparty%2Felfutils.git backends: riscv_cfi.c had a bad BACKEND define. BACKEND should have been defined as riscv_ (not aarch64_). Reported-by: Mao Han Signed-off-by: Mark Wielaard --- diff --git a/backends/ChangeLog b/backends/ChangeLog index 0c61a0b33..6c2b47a94 100644 --- a/backends/ChangeLog +++ b/backends/ChangeLog @@ -1,3 +1,7 @@ +2019-04-14 Mark Wielaard + + * riscv_cfi.c: Fix BACKEND define. + 2019-02-15 Mark Wielaard * s390_init.c (s390_init): Hook check_special_symbol. diff --git a/backends/riscv_cfi.c b/backends/riscv_cfi.c index 1a84a3823..1c52ea8d4 100644 --- a/backends/riscv_cfi.c +++ b/backends/riscv_cfi.c @@ -31,7 +31,7 @@ #include -#define BACKEND aarch64_ +#define BACKEND riscv64_ #include "libebl_CPU.h"