]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
dnsdist: disable parallel build
authorArne Fitzenreiter <arne_f@ipfire.org>
Sun, 10 Apr 2016 07:41:08 +0000 (09:41 +0200)
committerArne Fitzenreiter <arne_f@ipfire.org>
Sun, 10 Apr 2016 07:41:08 +0000 (09:41 +0200)
on 4 core machines with 2GB ram the parallel build fails
with out of memory.

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

index 62c17cf9fba7045380b564aa4a0f813d38f92924..a5d9fea9ff94f88cbb4a7ccf9896ea8c7d4a1ee4 100644 (file)
@@ -79,7 +79,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc
-       cd $(DIR_APP) && make $(MAKETUNING)
+       cd $(DIR_APP) && make
        cd $(DIR_APP) && make install
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)