From f53d80f60dd9807a115630c528d91471ff58498a Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 18 Aug 2019 17:54:01 +0100 Subject: [PATCH 1/1] 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 --- lfs/tshark | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2