From 7ec727e99411ff7c706fc54fbf237d09f1a101c0 Mon Sep 17 00:00:00 2001 From: Sukru Senli Date: Sun, 17 May 2020 17:21:51 +0200 Subject: [PATCH] owsd: install uproxyd only if selected --- owsd/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/owsd/Makefile b/owsd/Makefile index 44ec05855..309bdb689 100644 --- a/owsd/Makefile +++ b/owsd/Makefile @@ -57,7 +57,6 @@ define Package/owsd/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/owsd $(1)/usr/bin/owsd $(INSTALL_DIR) $(1)/sbin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/uproxyd $(1)/sbin/uproxyd $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) ./files/owsd.init $(1)/etc/init.d/owsd $(INSTALL_DIR) $(1)/etc/config @@ -65,6 +64,7 @@ define Package/owsd/install $(INSTALL_DIR) $(1)/etc/hotplug.d/iface $(INSTALL_BIN) ./files/owsd.hotplug $(1)/etc/hotplug.d/iface/55-owsd ifeq ($(CONFIG_OWSD_UPROXYD),y) + $(INSTALL_BIN) $(PKG_BUILD_DIR)/uproxyd $(1)/sbin/uproxyd $(CP) ./uproxy-files/* $(1)/ endif endef