From: Van Waholtz Date: Thu, 17 Aug 2023 03:31:36 +0000 (+0800) Subject: syncthing: disable quic to support GO 1.21 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=23113ceb97dbc1ad5d3caba83b72dbb1d0a69a37;p=openwrt-packages.git syncthing: disable quic to support GO 1.21 Signed-off-by: Van Waholtz --- diff --git a/utils/syncthing/Makefile b/utils/syncthing/Makefile index 50abb68d0..1696a01cd 100644 --- a/utils/syncthing/Makefile +++ b/utils/syncthing/Makefile @@ -26,13 +26,13 @@ GO_PKG_BUILD_PKG:=\ $(if $(CONFIG_PACKAGE_strelaysrv),$(GO_PKG)/cmd/strelaysrv/) GO_PKG_INSTALL_EXTRA:=^gui/ +GO_PKG_TAGS:=noupgrade,noquic GO_PKG_LDFLAGS_X:=\ $(GO_PKG)/lib/build.Version=v$(PKG_VERSION) \ $(GO_PKG)/lib/build.Stamp=$(SOURCE_DATE_EPOCH) \ $(GO_PKG)/lib/build.User=openwrt \ $(GO_PKG)/lib/build.Host=openwrt \ - $(GO_PKG)/lib/build.Tags=noupgrade -GO_PKG_TAGS:=noupgrade + $(GO_PKG)/lib/build.Tags=$(GO_PKG_TAGS) include $(INCLUDE_DIR)/package.mk include ../../lang/golang/golang-package.mk