From 9389e1bd40716c16a40cd3102b37e9de8f97e5a3 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Sun, 8 Sep 2019 01:10:45 +0200 Subject: [PATCH] tools: Build gnu date for u-boot build u-boot needs the gnu date tool and doe snot work with the bsd date tool. Make the mkimage(u-boot) depend on coreutils on non Linux systems. Signed-off-by: Hauke Mehrtens --- tools/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/Makefile b/tools/Makefile index a161154b80..0e3f98cab9 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -81,6 +81,7 @@ $(curdir)/cbootimage/compile += $(curdir)/automake/compile ifneq ($(HOST_OS),Linux) $(curdir)/squashfskit4/compile += $(curdir)/coreutils/compile + $(curdir)/mkimage/compile += $(curdir)/coreutils/compile tools-y += coreutils endif -- 2.30.2