From 678327a8fd166e611b6b7d2d9bc866897b787989 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Peter=20M=C3=BCller?= Date: Sun, 3 Apr 2022 16:49:02 +0000 Subject: [PATCH] Config: Fix missing bracket MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reported-by: Matthias Fischer Signed-off-by: Peter Müller --- lfs/Config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lfs/Config b/lfs/Config index 6ee44ce35f..d4de6550bc 100644 --- a/lfs/Config +++ b/lfs/Config @@ -347,7 +347,7 @@ endef define LOAD @echo -e "$(MESSAGE)Download: $($(notdir $@))" wget -T 60 -t 1 -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O $(DIR_TMP)/$(notdir $@) - [ "$($(notdir $@)_BLAKE2)" = "$(firstword $(shell b2sum $(DIR_TMP)/$(notdir $@))" ] # detect page not found answer + [ "$($(notdir $@)_BLAKE2)" = "$(firstword $(shell b2sum $(DIR_TMP)/$(notdir $@)))" ] # detect page not found answer mv $(DIR_TMP)/$(notdir $@) $(DIR_DL) endef -- 2.39.5