From: Rosen Penev Date: Sun, 25 Sep 2022 05:00:40 +0000 (-0700) Subject: toolchain/gdb: fix expat location X-Git-Tag: v23.05.0-rc1~2310 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fhauke.git;a=commitdiff_plain;h=fcaea8b55135ef5db4d7c66230b8a5c4cb263991 toolchain/gdb: fix expat location GDB is not finding tools/expat. This fixes it. Move it up with the other tools. Signed-off-by: Rosen Penev --- diff --git a/toolchain/gdb/Makefile b/toolchain/gdb/Makefile index d69217f6ca..4587c591f4 100644 --- a/toolchain/gdb/Makefile +++ b/toolchain/gdb/Makefile @@ -33,12 +33,12 @@ HOST_CONFIGURE_ARGS = \ --with-gmp=$(TOPDIR)/staging_dir/host \ --with-mpfr=$(TOPDIR)/staging_dir/host \ --with-mpc=$(TOPDIR)/staging_dir/host \ + --with-expat=$(TOPDIR)/staging_dir/host \ --disable-werror \ --without-uiout \ --enable-tui --disable-gdbtk --without-x \ --without-included-gettext \ --enable-threads \ - --with-expat \ --disable-unit-tests \ --disable-ubsan \ --disable-binutils \