From e49e0513a9ede1d3bea7b29e1d50d36674c84086 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 4 Sep 2011 10:54:35 +0000 Subject: [PATCH] mysql: Force to build with -j1 on ARM. The C++ compilers consume a high amount of memory and our ARM machine has got only 512 Megs of that. --- lfs/mysql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lfs/mysql b/lfs/mysql index 410dad6c45..b505fc8c1a 100644 --- a/lfs/mysql +++ b/lfs/mysql @@ -34,6 +34,10 @@ TARGET = $(DIR_INFO)/$(THISAPP) PROG = mysql PAK_VER = 1 +ifeq "$(MACHINE)" "arm" + MAKETUNING = -j1 +endif + ############################################################################### # Top-level Rules ############################################################################### -- 2.39.2