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 <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2024-07-09 15:00:42 +00:00
parent 449f2879af
commit 761e95ad0c

View File

@@ -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