summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pkg/linux/module.defs2
-rw-r--r--pkg/linux/module.rules2
2 files changed, 3 insertions, 1 deletions
diff --git a/pkg/linux/module.defs b/pkg/linux/module.defs
index b17aaa377..bb630a1aa 100644
--- a/pkg/linux/module.defs
+++ b/pkg/linux/module.defs
@@ -57,7 +57,7 @@ PKG.rpm.stamp = $(PKG.out/).rpm.stamp
PKG.out.flatpak/ = $(PKG.out/)flatpak/
STAGE.out.flatpak/ = $(STAGE.out/)flatpak/
-PKG.gui.flathub.manifest = $(PKG.out.flatpak/)/fr.handbrake.ghb.json
+PKG.gui.flathub.manifest = $(PKG.out.flatpak/)fr.handbrake.ghb.json
PKG.cli.flathub.manifest = $(PKG.out.flatpak/)/fr.handbrake.HandBrakeCLI.json
PKG.gui.manifest.flatpak = $(PKG.flatpak/)fr.handbrake.ghb.json
PKG.cli.manifest.flatpak = $(PKG.flatpak/)fr.handbrake.HandBrakeCLI.json
diff --git a/pkg/linux/module.rules b/pkg/linux/module.rules
index dcbc36289..d662d580f 100644
--- a/pkg/linux/module.rules
+++ b/pkg/linux/module.rules
@@ -62,9 +62,11 @@ $(PKG.rpm.stamp): $(PKG.native.rpm.stamp)
# Flatpak binary package rules
#
$(PKG.gui.flathub.manifest):
+ $(MKDIR.exe) -p $(PKG.out.flatpak/)
$(SRC/)scripts/create_flatpak_manifest.py -a "$(HB_URL)" -s "$(HB_SHA256)" -t $(PKG.gui.manifest.flatpak) $(foreach m,$(CONTRIBS),-c "$(word 1,$($m.FETCH.url))" -s "$(word 1,$($m.FETCH.sha256))") $(FPRUNTIME) $(PKG.gui.flathub.manifest)
$(PKG.cli.flathub.manifest):
+ $(MKDIR.exe) -p $(PKG.out.flatpak/)
$(SRC/)scripts/create_flatpak_manifest.py -a "$(HB_URL)" -s "$(HB_SHA256)" -t $(PKG.cli.manifest.flatpak) $(foreach m,$(CONTRIBS),-c "$(word 1,$($m.FETCH.url))" -s "$(word 1,$($m.FETCH.sha256))") $(FPRUNTIME) $(PKG.cli.flathub.manifest)
$(PKG.gui.flatpak): GNUmakefile $(PKG.src.tar.bz2)