]> git.ipfire.org Git - people/mfischer/ipfire-2.x.git/commitdiff
Config: Use the correct variable for the package release
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 2 Aug 2024 16:48:39 +0000 (16:48 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 2 Aug 2024 16:48:39 +0000 (16:48 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
lfs/Config

index d90d1a6054f329e6628f460616435c1d5ccad2ef..11074e94a68b7743e097e89e9452953ef558e602 100644 (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