summaryrefslogtreecommitdiffstats
path: root/pkg/linux
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2018-06-19 21:15:04 -0700
committerJohn Stebbins <[email protected]>2018-06-19 21:15:04 -0700
commit5132da551846c8d992b2ae6ef41c81470bfdb85b (patch)
tree609010434dd538cd7e1746f87329d4a918e25f5f /pkg/linux
parent337cceb17649f50537e16b4fd27ae41884f9ff0a (diff)
flatpak: fix missing directory for flathub target
Diffstat (limited to 'pkg/linux')
-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)