From: nbd Date: Tue, 19 Jan 2016 22:41:31 +0000 (+0000) Subject: uclient: install a symlink from uclient-fetch to wget into /bin X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=f496c09f9c7684e175ca56e1ad460f3661b2db5b;p=openwrt.git uclient: install a symlink from uclient-fetch to wget into /bin Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48379 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/libs/uclient/Makefile b/package/libs/uclient/Makefile index 7ed7ae2ff2..bc5fc114cd 100644 --- a/package/libs/uclient/Makefile +++ b/package/libs/uclient/Makefile @@ -43,8 +43,9 @@ define Package/libuclient/install endef define Package/uclient-fetch/install - $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/uclient-fetch $(1)/usr/bin/ + $(INSTALL_DIR) $(1)/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/uclient-fetch $(1)/bin/ + ln -s uclient-fetch $(1)/bin/wget endef $(eval $(call BuildPackage,libuclient))