]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
make.sh: Remove check for minimum host memory
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 22 May 2018 20:31:24 +0000 (21:31 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 22 May 2018 20:31:24 +0000 (21:31 +0100)
This won't build on the ARM builders any more

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
make.sh

diff --git a/make.sh b/make.sh
index 353441b017427107c01592aad29868b654ee8b10..703ce0c4871aa359d3a31f4d8a5e70b59523ba0d 100755 (executable)
--- a/make.sh
+++ b/make.sh
@@ -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 ))