From: Arne Fitzenreiter Date: Tue, 28 Nov 2017 06:01:33 +0000 (+0100) Subject: boost: disable parallel build X-Git-Tag: v2.19-core117~2 X-Git-Url: http://git.ipfire.org/?p=ipfire-2.x.git;a=commitdiff_plain;h=9d5d057dac6d67be939bebc1d3adf39b170a18d7 boost: disable parallel build this need more than 1GB ram on arm Signed-off-by: Arne Fitzenreiter --- diff --git a/lfs/boost b/lfs/boost index 533cb24103..29c7bad906 100644 --- a/lfs/boost +++ b/lfs/boost @@ -55,8 +55,6 @@ CONFIGURE_OPTIONS = \ cflags="$(CFLAGS)" \ cxxflags="$(CXXFLAGS)" -MAKETUNING = -j2 - ############################################################################### # Top-level Rules ############################################################################### @@ -97,8 +95,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) cd $(DIR_APP) && ./bootstrap.sh --with-toolset=gcc - cd $(DIR_APP) && ./b2 -d+2 -q $(MAKETUNING) $(CONFIGURE_OPTIONS) stage - cd $(DIR_APP) && ./b2 $(MAKETUNING) $(CONFIGURE_OPTIONS) install + cd $(DIR_APP) && ./b2 -d+2 -q $(CONFIGURE_OPTIONS) stage + cd $(DIR_APP) && ./b2 $(CONFIGURE_OPTIONS) install @rm -rf $(DIR_APP) @$(POSTBUILD)