From d043f6f9ecbbc8bcc7c0509f39b5f38f8d729ec9 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 9 Jul 2024 15:00:42 +0000 Subject: [PATCH] make.sh: Don't revalidate the images all the time Calling b2 causes make to verify all source which creates a lot of IO. This is not really necessary because install will do the same and the build would fail if the source checksums didn't match. Signed-off-by: Michael Tremer --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index b454591ce..c716efbc7 100755 --- a/make.sh +++ b/make.sh @@ -980,7 +980,7 @@ lfsmake2() { [ $? == 1 ] && return 0 # Download source outside of the toolchain - if ! make_pkg "${pkg}" download b2 "$@"; then + if ! make_pkg "${pkg}" download "$@"; then exiterror "Downloading ${pkg}" fi -- 2.39.5