From da6c788e19816e5800d8978e2f4de23c683cb774 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Sun, 8 Sep 2019 01:19:52 +0200 Subject: [PATCH] tools: Build md5sum for quilt quilt needs md5sum to build, make it depend on coreutils and make coreutils build md5sum application. Signed-off-by: Hauke Mehrtens --- tools/Makefile | 1 + tools/coreutils/Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/Makefile b/tools/Makefile index 0e3f98cab9..89347818d1 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -82,6 +82,7 @@ $(curdir)/cbootimage/compile += $(curdir)/automake/compile ifneq ($(HOST_OS),Linux) $(curdir)/squashfskit4/compile += $(curdir)/coreutils/compile $(curdir)/mkimage/compile += $(curdir)/coreutils/compile + $(curdir)/quilt/compile += $(curdir)/coreutils/compile tools-y += coreutils endif diff --git a/tools/coreutils/Makefile b/tools/coreutils/Makefile index e338796053..76080b7960 100644 --- a/tools/coreutils/Makefile +++ b/tools/coreutils/Makefile @@ -16,7 +16,7 @@ PKG_HASH:=8891d349ee87b9ff7870f52b6d9312a9db672d2439d289bc57084771ca21656b HOST_BUILD_PARALLEL := 1 -BUILD_PROGRAMS = date readlink touch +BUILD_PROGRAMS = date readlink touch md5sum include $(INCLUDE_DIR)/host-build.mk -- 2.30.2