diff options
| author | Hannu Nyman | 2023-11-12 18:34:45 +0000 |
|---|---|---|
| committer | Christian Marangi | 2023-11-13 14:41:03 +0000 |
| commit | 5ddebb5fd9aa94a70629ff3708a281cf039f7eea (patch) | |
| tree | ff533b3a2eefeb28366c25e1b97592c0461779c1 | |
| parent | e927456ec3d9cd7e92ba884a3065ecc303564720 (diff) | |
| download | openwrt-5ddebb5fd9aa94a70629ff3708a281cf039f7eea.tar.gz | |
devel/gdb: Disable libzstd explicitly
New gdb has got libzstd support, and libzstd gets detected
at buildbot build. Explicitly disable it to avoid dependency.
Fixes: f79de8ec65 ("gdb: Update to 13.2")
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
| -rw-r--r-- | package/devel/gdb/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/devel/gdb/Makefile b/package/devel/gdb/Makefile index 20a40eb8bb..3efbce28f4 100644 --- a/package/devel/gdb/Makefile +++ b/package/devel/gdb/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=gdb PKG_VERSION:=13.2 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@GNU/gdb @@ -58,6 +58,7 @@ CONFIGURE_ARGS+= \ --with-system-zlib \ --without-expat \ --without-lzma \ + --without-zstd \ --disable-unit-tests \ --disable-ubsan \ --disable-sim \ |