diff options
author | John Stebbins <[email protected]> | 2018-06-19 21:15:04 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2018-06-19 21:15:04 -0700 |
commit | 5132da551846c8d992b2ae6ef41c81470bfdb85b (patch) | |
tree | 609010434dd538cd7e1746f87329d4a918e25f5f /pkg/linux | |
parent | 337cceb17649f50537e16b4fd27ae41884f9ff0a (diff) |
flatpak: fix missing directory for flathub target
Diffstat (limited to 'pkg/linux')
-rw-r--r-- | pkg/linux/module.defs | 2 | ||||
-rw-r--r-- | pkg/linux/module.rules | 2 |
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) |