From d9b86c700359142af70c4abbcb70c0239d1a1082 Mon Sep 17 00:00:00 2001 From: Lee Clow <15318836+Leeclow-ops@users.noreply.github.com> Date: Tue, 25 Apr 2023 19:05:01 +0800 Subject: [PATCH] tailscale: makefile typo fixes (#680) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix “tailscaled.state” file does not exist Remove redundant '/' --- net/tailscale/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/net/tailscale/Makefile b/net/tailscale/Makefile index 6dd8fb7a..33bfd6e7 100644 --- a/net/tailscale/Makefile +++ b/net/tailscale/Makefile @@ -63,7 +63,6 @@ Package/tailscaled/description:=$(Package/tailscale/description) define Package/tailscaled/conffiles /etc/config/tailscale -/etc/tailscale/tailscaled.state endef GO_IPTABLES_VERSION:=0.6.0 @@ -96,8 +95,8 @@ endef define Package/tailscaled/install $(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d $(1)/etc/config $(INSTALL_BIN) $(GO_PKG_BUILD_BIN_DIR)/tailscaled $(1)/usr/sbin - $(INSTALL_BIN) ./files//tailscale.init $(1)/etc/init.d/tailscale - $(INSTALL_DATA) ./files//tailscale.conf $(1)/etc/config/tailscale + $(INSTALL_BIN) ./files/tailscale.init $(1)/etc/init.d/tailscale + $(INSTALL_DATA) ./files/tailscale.conf $(1)/etc/config/tailscale endef $(eval $(call BuildPackage,tailscale))