From: Peter Müller Date: Sun, 3 Apr 2022 16:49:02 +0000 (+0000) Subject: Config: Fix missing bracket X-Git-Tag: v2.27-core167~6^2~55 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=678327a8fd166e611b6b7d2d9bc866897b787989;p=ipfire-2.x.git Config: Fix missing bracket Reported-by: Matthias Fischer Signed-off-by: Peter Müller --- 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