Skip to content

Commit

Permalink
Meson: remove positional arguments from i18n.merge_file (#1973)
Browse files Browse the repository at this point in the history
`i18n.merge_file` has been ignoring positional arguments for a time and explicitly rejects with error since meson 0.60.0.
  • Loading branch information
Xeonacid authored Jan 7, 2022
1 parent a73496d commit 28428fb
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ appdata_in = configure_file(
)

i18n.merge_file(
'policy',
input: policy_in,
output: meson.project_name() + '.policy',
po_dir: join_paths(meson.source_root(), 'po', 'extra'),
Expand All @@ -59,7 +58,6 @@ i18n.merge_file(
)

i18n.merge_file(
'desktop',
input: desktop_in,
output: meson.project_name() + '.desktop',
install: true,
Expand All @@ -69,7 +67,6 @@ i18n.merge_file(
)

i18n.merge_file(
'appdata',
input: appdata_in,
output: meson.project_name() + '.appdata.xml',
install: true,
Expand Down

0 comments on commit 28428fb

Please sign in to comment.