From 91f2fec680f3f307433602ad9f9c023ff151b164 Mon Sep 17 00:00:00 2001 From: Mikhail Zhilkin Date: Mon, 27 Mar 2023 17:59:21 +0000 Subject: [PATCH] transmission-web-control: fix web interface files path Transmission 4.0 web interface files changed from /web to /public_html This fixes https://github.com/openwrt/packages/issues/20737 Signed-off-by: Mikhail Zhilkin --- net/transmission-web-control/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net/transmission-web-control/Makefile b/net/transmission-web-control/Makefile index 616b57567..449705178 100644 --- a/net/transmission-web-control/Makefile +++ b/net/transmission-web-control/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=transmission-web-control -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/ronggang/transmission-web-control @@ -34,8 +34,8 @@ define Build/Compile endef define Package/transmission-web-control/install - $(INSTALL_DIR) $(1)/usr/share/transmission/web - $(CP) $(PKG_BUILD_DIR)/src/* $(1)/usr/share/transmission/web + $(INSTALL_DIR) $(1)/usr/share/transmission/public_html + $(CP) $(PKG_BUILD_DIR)/src/* $(1)/usr/share/transmission/public_html endef $(eval $(call BuildPackage,transmission-web-control))