Config: Use the correct variable for the package release

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2024-08-02 16:48:39 +00:00
parent ed2c97b799
commit df84336ef8

View File

@@ -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