]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
boost: disable parallel build
authorArne Fitzenreiter <arne_f@ipfire.org>
Tue, 28 Nov 2017 06:01:33 +0000 (07:01 +0100)
committerArne Fitzenreiter <arne_f@ipfire.org>
Tue, 28 Nov 2017 06:13:10 +0000 (07:13 +0100)
this need more than 1GB ram on arm

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
lfs/boost

index 533cb24103dd819306e96ae558d8c56ebaceed3b..29c7bad906d0524679044d2c82ecc88c6ad27e5d 100644 (file)
--- 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)