diff options
author | Phil Sutter <phil@nwl.cc> | 2021-10-29 23:30:41 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2021-10-30 17:47:42 +0200 |
commit | 990e8e9cfecf72c63d9e6c6d0f6ed28831cf5477 (patch) | |
tree | ee657cd5e8d19ce4650065843e92aedfda21d3e4 /package | |
parent | 2a1119faa071d474c85a3e1ae0ee04b8040bd5ff (diff) |
gdb: Fix libexpat search path
Configure searches libexpat in host's rootfs and consequently fails.
Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'package')
-rw-r--r-- | package/gdb/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/gdb/Makefile b/package/gdb/Makefile index 1bb3920a8..97a4ffbc9 100644 --- a/package/gdb/Makefile +++ b/package/gdb/Makefile @@ -43,6 +43,7 @@ CONFIGURE_ARGS+= --enable-static \ --with-system-zlib \ --with-system-readline \ --with-curses \ + --with-libexpat-prefix="${STAGING_TARGET_DIR}/usr" \ --enable-gdbmi gdb-install: |