Skip to content

Commit

Permalink
Remove incorrect argument for i18n.merge_file
Browse files Browse the repository at this point in the history
`i18n.merge_file` has been ignoring positional arguments before and explicitly rejects with error "ERROR: Function does not take positional arguments" since meson 0.60.0
  • Loading branch information
r-value authored Nov 16, 2021
1 parent d145201 commit 2da09f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion share/applications/meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
i18n = import('i18n')
i18n.merge_file('io.github.iptux_src.iptux.desktop',
i18n.merge_file(
type: 'desktop',
output: 'io.github.iptux_src.iptux.desktop',
input: 'io.github.iptux_src.iptux.desktop.in',
Expand Down

0 comments on commit 2da09f2

Please sign in to comment.