aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Sixt <j6t@kdbg.org>2026-02-05 13:45:51 +0100
committerJohannes Sixt <j6t@kdbg.org>2026-02-05 13:45:51 +0100
commitddae547e3775638c238c11f30120f1e7e763fba8 (patch)
tree3d12c75dd5501d53eced3a807600a3f4756527d9
parent28f96e0173b4de1543ce45978837ddc49b532a83 (diff)
parent97121bb0174f5c3604de989e1bad0663edcc0b39 (diff)
downloadgit-ddae547e3775638c238c11f30120f1e7e763fba8.tar.xz
Merge branch 'pks-meson-fix-missing-msgfmt' of https://github.com/pks-gitlab/gitk
* 'pks-meson-fix-missing-msgfmt' of https://github.com/pks-gitlab/gitk: gitk: fix msgfmt being required Signed-off-by: Johannes Sixt <j6t@kdbg.org>
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index ca3c0cec58..aecc068d30 100644
--- a/meson.build
+++ b/meson.build
@@ -25,6 +25,6 @@ custom_target(
install_dir: get_option('bindir'),
)
-if find_program('msgfmt').found()
+if find_program('msgfmt', required: false).found()
subdir('po')
endif