summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid King <amigadave@amigadave.com>2021-11-01 15:34:26 +0000
committerDavid King <amigadave@amigadave.com>2021-11-01 15:34:26 +0000
commit5bf958f1d2f67b11ba050aa210a6224e02d499a5 (patch)
treec0f1a1d4951e28a5e1302755b508738d0d29cbcb
parentd061210628f2c304a45b7ddce3b45f175eb2f074 (diff)
downloadcheese-5bf958f1d2f67b11ba050aa210a6224e02d499a5.tar.gz
meson: avoid positional arguments in merge_file41.1
https://gitlab.gnome.org/GNOME/cheese/-/issues/124
-rw-r--r--data/meson.build6
1 files changed, 2 insertions, 4 deletions
diff --git a/data/meson.build b/data/meson.build
index a355fdec..c877de0c 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -23,10 +23,9 @@ resource_sources = gnome.compile_resources(
desktop = cheese_namespace + '.desktop'
i18n.merge_file(
- desktop,
type: 'desktop',
input: desktop + '.in',
- output: '@BASENAME@',
+ output: desktop,
po_dir: po_dir,
install: true,
install_dir: cheese_datadir / 'applications',
@@ -35,9 +34,8 @@ i18n.merge_file(
appdata = cheese_namespace + '.appdata.xml'
i18n.merge_file(
- appdata,
input: appdata + '.in',
- output: '@BASENAME@',
+ output: appdata,
po_dir: po_dir,
install: true,
install_dir: cheese_datadir / 'metainfo',