From dd813c6bc889fb7eca4340401e609877c183e42a Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 9 Jul 2024 15:01:58 +0000 Subject: [PATCH] make.sh: Explicitely download packages when building the toolchain Signed-off-by: Michael Tremer --- make.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/make.sh b/make.sh index c716efbc78..8cf4672cf5 100755 --- a/make.sh +++ b/make.sh @@ -962,6 +962,11 @@ lfsmake1() { lfsmakecommoncheck "${pkg}" "$@" [ $? == 1 ] && return 0 + # Download source outside of the toolchain + if ! make_pkg "${pkg}" download "$@"; then + exiterror "Downloading ${pkg}" + fi + if ! make_pkg "${pkg}" TOOLCHAIN=1 ROOT="${BUILD_DIR}"; then print_status FAIL -- 2.47.3