diff options
author | Haru <haru@dotalux.com> | 2019-12-07 00:08:10 +0100 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2020-03-30 06:35:10 +0300 |
commit | 03b2194deabf1470c2b2e6e6b381ba2811c739e6 (patch) | |
tree | df326284c2d623faea82d78b793699367a76fd05 /src/char | |
parent | 8f38bf7f9e402edc14df3fe89dc0b46b1b1c3ee9 (diff) | |
download | hercules-03b2194deabf1470c2b2e6e6b381ba2811c739e6.tar.gz hercules-03b2194deabf1470c2b2e6e6b381ba2811c739e6.tar.bz2 hercules-03b2194deabf1470c2b2e6e6b381ba2811c739e6.tar.xz hercules-03b2194deabf1470c2b2e6e6b381ba2811c739e6.zip |
Fix Makefile-based compilation on platforms that use libbacktrace with a different executable format than elf
Diffstat (limited to 'src/char')
-rw-r--r-- | src/char/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char/Makefile.in b/src/char/Makefile.in index 34fc0fcba..dc687d589 100644 --- a/src/char/Makefile.in +++ b/src/char/Makefile.in @@ -38,7 +38,7 @@ LIBCONFIG_H = $(addprefix $(LIBCONFIG_D)/, libconfig.h grammar.h parsectx.h \ LIBBACKTRACE_D = $(THIRDPARTY_D)/libbacktrace LIBBACKTRACE_OBJ = $(addprefix $(LIBBACKTRACE_D)/, atomic.o backtrace.o \ - dwarf.o elf.o fileline.o mmapio.o mmap.o posix.o print.o \ + dwarf.o @LIBBACKTRACE_FORMAT_FILE@ fileline.o mmapio.o mmap.o posix.o print.o \ simple.o sort.o state.o) LIBBACKTRACE_H = $(addprefix $(LIBBACKTRACE_D)/, backtrace.h \ backtrace-supported.h config.h filenames.h internal.h) |