diff options
-rwxr-xr-x | debian/calc-max-parallel.sh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/debian/calc-max-parallel.sh b/debian/calc-max-parallel.sh index 9963a9ace..2faa1c58d 100755 --- a/debian/calc-max-parallel.sh +++ b/debian/calc-max-parallel.sh @@ -18,11 +18,7 @@ eight_g=$((8*1024*1024)) four_g=$((4*1024*1024)) if [ ${total_ram} -le ${four_g} ]; then - if dpkg-architecture -q DEB_BUILD_ARCH | grep -q -e arm -e mips -e powerpc -e ppc; then - echo "--max-parallel=1" - else - echo "--max-parallel=2" - fi + echo "--max-parallel=1" elif [ ${total_ram} -le ${eight_g} ]; then echo "--max-parallel=2" elif [ ${total_ram} -le ${sixteen_g} ]; then |