diff options
author | John Stebbins <[email protected]> | 2019-09-12 15:31:10 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-09-13 17:13:35 -0700 |
commit | 9562e631c54664fc97fb3228f67e514e01c1913c (patch) | |
tree | 983ad45ce15c866fd40ff883131c47691ee97cf2 /pkg/linux | |
parent | 79740fb9ba11c49469c52bce4ca3a4816843686f (diff) |
flatpak: fix manifest file creation
The makefile variable name for the manifest output file was wrong
Diffstat (limited to 'pkg/linux')
-rw-r--r-- | pkg/linux/module.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/linux/module.rules b/pkg/linux/module.rules index 6f08c958f..06a21ac1c 100644 --- a/pkg/linux/module.rules +++ b/pkg/linux/module.rules @@ -64,7 +64,7 @@ $(PKG.rpm.stamp): $(PKG.native.rpm.stamp) # $(PKG.gui.manifest.flathub): $(MKDIR.exe) -p $(PKG.out.flatpak/) - $(SRC/)scripts/create_flatpak_manifest.py $(FPQSV) -a "$(HB_URL)" -s "$(HB_SHA256)" -t $(PKG.gui.template.flatpak) $(foreach m,$(CONTRIBS),-c "$(word 1,$($m.FETCH.url))" -s "$(word 1,$($m.FETCH.sha256))") $(FPRUNTIME) $(PKG.gui.manifset.flathub) + $(SRC/)scripts/create_flatpak_manifest.py $(FPQSV) -a "$(HB_URL)" -s "$(HB_SHA256)" -t $(PKG.gui.template.flatpak) $(foreach m,$(CONTRIBS),-c "$(word 1,$($m.FETCH.url))" -s "$(word 1,$($m.FETCH.sha256))") $(FPRUNTIME) $(PKG.gui.manifest.flathub) $(PKG.cli.manifest.flathub): $(MKDIR.exe) -p $(PKG.out.flatpak/) |