From: Michael Tremer Date: Sun, 18 Aug 2019 16:54:01 +0000 (+0100) Subject: tshark: Fix parallel build X-Git-Tag: v2.23-core136~7^2~68 X-Git-Url: http://git.ipfire.org/?p=ipfire-2.x.git;a=commitdiff_plain;h=f53d80f60dd9807a115630c528d91471ff58498a;hp=071d7754f7b955b28f7e3b5f3eb44fbaa93eb4e9 tshark: Fix parallel build The variable name was incorrect and therefore a parallel build was never attempted. This this package already takes a lot of time to build, even more is being saved now. Signed-off-by: Michael Tremer --- diff --git a/lfs/tshark b/lfs/tshark index 58c276e251..562c70e26f 100644 --- a/lfs/tshark +++ b/lfs/tshark @@ -84,7 +84,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) -DCMAKE_BUILD_TYPE=Release \ -DBUILD_mmdbresolve=OFF - cd $(DIR_APP)/build && make $(PARALELLISMFLAGS) + cd $(DIR_APP)/build && make $(MAKETUNING) cd $(DIR_APP)/build && make install @rm -rf $(DIR_APP)