From: George Sapkin Date: Fri, 14 Mar 2025 13:19:58 +0000 (+0200) Subject: adguardhome: remove unnecessary build options X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=e416d3f12ee39df1a149a0eef0321ae8e491b948;p=feed%2Fpackages.git adguardhome: remove unnecessary build options Remove `node-yarn/host` because the upstream switched to npm Remove `NODE_OPTIONS=--openssl-legacy-provider` because it's not necessary since Node.js 18.x Link: https://github.com/AdguardTeam/AdGuardHome/commit/1afe226ce8f8af179e1eacccf4cdd63823f0c358#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5R210-L211 Link: https://github.com/AdguardTeam/AdGuardHome/commit/1afe226ce8f8af179e1eacccf4cdd63823f0c358#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5L223-L230 Signed-off-by: George Sapkin --- diff --git a/net/adguardhome/Makefile b/net/adguardhome/Makefile index f5ee18aac3..ae5fa94ccb 100644 --- a/net/adguardhome/Makefile +++ b/net/adguardhome/Makefile @@ -18,7 +18,7 @@ PKG_LICENSE:=GPL-3.0-only PKG_LICENSE_FILES:=LICENSE.txt PKG_MAINTAINER:=Dobroslaw Kijowski -PKG_BUILD_DEPENDS:=golang/host node/host node-yarn/host +PKG_BUILD_DEPENDS:=golang/host node/host PKG_BUILD_PARALLEL:=1 PKG_BUILD_FLAGS:=no-mips16 @@ -56,7 +56,7 @@ endef define Build/Compile ( \ pushd $(PKG_BUILD_DIR) ; \ - NODE_OPTIONS=--openssl-legacy-provider make js-deps js-build ; \ + make js-deps js-build ; \ popd ; \ $(call GoPackage/Build/Compile) ; \ )