lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 2c80de905816cde286a27ad206ff45a5099aedaf
parent 60422c0de4b0c9e41f52b90369b15e9cea15d82d
Author: Florian Fainelli <florian@openwrt.org>
Date:   Wed, 29 Jun 2016 22:41:44 -0700

stoken: Fix binary installation

We were copying a wrapper script instead of the actual executable.

Fixes #2910

Signed-off-by: Florian Fainelli <florian@openwrt.org>

Diffstat:
Mutils/stoken/Makefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/utils/stoken/Makefile b/utils/stoken/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=stoken PKG_VERSION:=0.8 PKG_REV:=c4d79ffbf5053e44be4b64da22b1b7fb6a51daf2 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/cernekee/stoken.git @@ -65,7 +65,7 @@ endef define Package/stoken/install $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/stoken $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/stoken $(1)/usr/bin/ endef define Package/libstoken/install