forked from elementary/calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
don't install extra.mo files (elementary#47)
* don't install extra.mo files This uses the new "install" argument to the i18n.gettext() call in meson, which is only present in version 0.43.0 and later. * README.md: note meson >= 0.43.0 requirement * specify meson version >= 0.43 requirement in meson.build
- Loading branch information
1 parent
81be3d7
commit 7b4be6b
Showing
3 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
i18n.gettext('extra', | ||
args: '--directory=' + meson.source_root() | ||
args: '--directory=' + meson.source_root(), | ||
install: false | ||
) |