make.sh: Remove check for minimum host memory

This won't build on the ARM builders any more

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2018-05-22 21:31:24 +01:00
parent f03e254f39
commit 30a42c6df9

View File

@@ -861,11 +861,6 @@ fi
# Get the amount of memory in this build system
HOST_MEM=$(system_memory)
# Checking host memory, tuning XZ_OPT
if [ ${HOST_MEM} -lt 1024 ]; then
exiterror "You will need more than 1GB or host memory to run the build"
fi
# We compress archives with "xz -8", using all cores and up to 70% of memory
XZ_MEM=$(( HOST_MEM * 7 / 10 ))