]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
Config: Fix missing bracket
authorPeter Müller <peter.mueller@ipfire.org>
Sun, 3 Apr 2022 16:49:02 +0000 (16:49 +0000)
committerPeter Müller <peter.mueller@ipfire.org>
Sun, 3 Apr 2022 16:49:02 +0000 (16:49 +0000)
Reported-by: Matthias Fischer <matthias.fischer@ipfire.org>
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
lfs/Config

index 6ee44ce35fb1f0b91c4e36866ec0a989e3ff44ca..d4de6550bc71064de8fe1b6aabccc7ae10c90f39 100644 (file)
@@ -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