From: Michael Tremer Date: Fri, 2 Aug 2024 16:48:39 +0000 (+0000) Subject: Config: Use the correct variable for the package release X-Git-Tag: v2.29-core188~10^2~212 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=df84336ef8f7c20f7337a0d078f198a135815db1;p=ipfire-2.x.git Config: Use the correct variable for the package release Signed-off-by: Michael Tremer --- diff --git a/lfs/Config b/lfs/Config index d90d1a6054..11074e94a6 100644 --- a/lfs/Config +++ b/lfs/Config @@ -342,7 +342,7 @@ ARCHIVE_DIR = /tmp/archive ARCHIVE_TMP = $(ARCHIVE_DIR)/.tmp # The filename of the package file -PACKAGE_FILENAME = $(PROG)-$(VER)-$(RELEASE).ipfire +PACKAGE_FILENAME = $(PROG)-$(VER)-$(PAK_VER).ipfire # The filename of the meta file META_FILENAME = meta-$(PROG) @@ -430,10 +430,10 @@ define CREATE_META echo "Name: $(PROG)" >> $(2) echo "Summary: $(SUMMARY)" >> $(2) echo "ProgVersion: $(VER)" >> $(2) - echo "Release: $(RELEASE)" >> $(2) + echo "Release: $(PAK_VER)" >> $(2) echo "Size: $(call PACKAGE_SIZE,$(1))" >> $(2) echo "Dependencies: $(DEPS)" >> $(2) - echo "File: $(PROG)-$(VER)-$(RELEASE).ipfire" >> $(2) + echo "File: $(PROG)-$(VER)-$(PAK_VER).ipfire" >> $(2) echo "Services: $(SERVICES)" >> $(2) endef