flatpak: fix missing directory for flathub target
authorJohn Stebbins <jstebbins.hb@gmail.com>
Wed, 20 Jun 2018 04:15:04 +0000 (21:15 -0700)
committerJohn Stebbins <jstebbins.hb@gmail.com>
Wed, 20 Jun 2018 04:15:04 +0000 (21:15 -0700)
pkg/linux/module.defs
pkg/linux/module.rules

index b17aaa3772975ca509893e61fe203de34a3999e4..bb630a1aa6aa0985a6356ba5ced9c3ddbc7978aa 100644 (file)
@@ -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
index dcbc36289ef17b5066c19b4da8d5dfbcee8e6130..d662d580f275779522500c87a0024fca80e8ec2f 100644 (file)
@@ -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)