build: Define po_dir variable

This commit is contained in:
Evangelos Ribeiro Tzaras
2023-01-24 11:00:02 +01:00
parent 4598eaa020
commit 22bcd46a26
2 changed files with 3 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ desktop_file = i18n.merge_file(
input : 'org.gnome.Calls.desktop.in',
output : 'org.gnome.Calls.desktop',
type : 'desktop',
po_dir : '../po',
po_dir : po_dir,
install : true,
install_dir : join_paths(datadir, 'applications')
)
@@ -15,7 +15,7 @@ desktop_daemon_file = i18n.merge_file(
input : 'org.gnome.Calls-daemon.desktop.in',
output : 'org.gnome.Calls-daemon.desktop',
type : 'desktop',
po_dir : '../po',
po_dir : po_dir,
install : true,
install_dir : join_paths(sysconfdir, 'xdg/autostart')
)