From: Michael Tremer Date: Sat, 21 Sep 2024 12:24:58 +0000 (+0000) Subject: Config: Fix determining the package size X-Git-Tag: v2.29-core190~125 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b5caa9261288be44bb386d9a18ab2aabb9af9a89;p=ipfire-2.x.git Config: Fix determining the package size Signed-off-by: Michael Tremer --- diff --git a/lfs/Config b/lfs/Config index 9fabe790c3..ea78042980 100644 --- a/lfs/Config +++ b/lfs/Config @@ -425,7 +425,7 @@ define CREATE_META echo "Summary: $(SUMMARY)" >> $(2) echo "ProgVersion: $(VER)" >> $(2) echo "Release: $(PAK_VER)" >> $(2) - echo "Size: $(shell stat --format=%s $(1))" >> $(2) + echo "Size: $$(stat --format=%s $(1))" >> $(2) echo "Dependencies: $(DEPS)" >> $(2) echo "File: $(PROG)-$(VER)-$(PAK_VER).ipfire" >> $(2) echo "Services: $(SERVICES)" >> $(2)