From 094cf18b3e12771fe83d905be151c9f494d752f6 Mon Sep 17 00:00:00 2001 From: Yousong Zhou Date: Mon, 19 Jun 2017 09:47:00 +0800 Subject: [PATCH] coreutils: stdbuf: fix missing libstdbuf.so Fixes #1674 Signed-off-by: Yousong Zhou --- utils/coreutils/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/utils/coreutils/Makefile b/utils/coreutils/Makefile index 0d52b60ea..3fbc75e09 100644 --- a/utils/coreutils/Makefile +++ b/utils/coreutils/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=coreutils PKG_VERSION:=8.23 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@GNU/coreutils @@ -43,6 +43,8 @@ DEPENDS_ls = +libacl +libcap DEPENDS_mv = +libacl DEPENDS_vdir = +libacl +libcap +FILES_stdbuf := usr/lib/coreutils/libstdbuf.so + define Package/coreutils/Default SECTION:=utils CATEGORY:=Utilities @@ -105,6 +107,10 @@ define BuildPlugin define Package/$(1)/install $(INSTALL_DIR) $$(1)/usr/bin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(2) $$(1)/usr/bin/ + $(foreach f,$(FILES_$(2)), + $(INSTALL_DIR) $$(1)/$(dir $(f)) + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/$(f) $$(1)/$(f) + ) endef $$(eval $$(call BuildPackage,$(1)))