ctop: fix install phase

Fix install phase for this package: use variable GO_PKG_BUILD_BIN_DIR
instead of GO_PKG_BUILD_DIR.

Signed-off-by: Marek Behún <kabel@blackhole.sk>
This commit is contained in:
Marek Behún 2020-09-24 02:50:16 +02:00
parent b41a261adc
commit 4a9e047de6
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ MAKE_FLAGS += \
define Package/ctop/install
$(INSTALL_DIR) $(1)/usr/sbin/
$(INSTALL_BIN) $(GO_PKG_BUILD_DIR)/bin/ctop $(1)/usr/sbin/
$(INSTALL_BIN) $(GO_PKG_BUILD_BIN_DIR)/ctop $(1)/usr/sbin/
endef
$(eval $(call BuildPackage,ctop))