diff options
| author | Mark Wielaard <[email protected]> | 2022-12-20 14:53:43 +0100 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2022-12-20 18:41:05 +0100 |
| commit | 6ecd16410ce1fe5cb0ac5b7c3342c5cc330e3a04 (patch) | |
| tree | d24a7414034932e8bf95b1d694f006375122a40f /libasm | |
| parent | 13a4d1279c5b7847049ca3045d04f2705c45ce31 (diff) | |
Do not use relative include paths in library files.
Rely on include dirs being set up correctly. Setup libdw AM_CPPFLAGS
to include libebl directory. In libdwfl note that debuginfod.h is a
generated file in the builddir. Only include it in the one file
debuginfod-client.c that really needs it.
Signed-off-by: Mark Wielaard <[email protected]>
Diffstat (limited to 'libasm')
| -rw-r--r-- | libasm/ChangeLog | 6 | ||||
| -rw-r--r-- | libasm/disasm_begin.c | 2 | ||||
| -rw-r--r-- | libasm/disasm_cb.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/libasm/ChangeLog b/libasm/ChangeLog index ce0f24f4..a12d14b3 100644 --- a/libasm/ChangeLog +++ b/libasm/ChangeLog @@ -1,3 +1,9 @@ +2022-12-20 Mark Wielaard <[email protected]> + + * disasm_begin.c: Include libeblP.h. + * disasm_cb.c: Likewise. + * bpf_disasm.c: Likewise and include common.h. + 2022-10-21 Yonggang Luo <[email protected]> * asm_abort.c: Don't include unistd.h. diff --git a/libasm/disasm_begin.c b/libasm/disasm_begin.c index cb10f66e..78db90c7 100644 --- a/libasm/disasm_begin.c +++ b/libasm/disasm_begin.c @@ -34,7 +34,7 @@ #include <stdlib.h> #include "libasmP.h" -#include "../libebl/libeblP.h" +#include "libeblP.h" DisasmCtx_t * diff --git a/libasm/disasm_cb.c b/libasm/disasm_cb.c index 80f8b25b..9353e2e5 100644 --- a/libasm/disasm_cb.c +++ b/libasm/disasm_cb.c @@ -33,7 +33,7 @@ #include <string.h> #include "libasmP.h" -#include "../libebl/libeblP.h" +#include "libeblP.h" struct symtoken |
