13
0

wscript: Actually invoke autowaf.build_i18n_pot in i18n_pot_func

This commit is contained in:
Mads Kiilerich 2024-10-21 22:16:59 +02:00 committed by Robin Gareus
parent 8e2a9dfd91
commit e520cf6bac
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 2 additions and 2 deletions

View File

@ -741,7 +741,7 @@ def i18n_func(bld):
'Paul Davis')
def i18n_pot_func(bld):
autowaf.build_i18n(bld, '.', 'libs/ardour', I18N_PACKAGE + bld.env['MAJOR'], libardour_sources,
autowaf.build_i18n_pot(bld, '.', 'libs/ardour', I18N_PACKAGE + bld.env['MAJOR'], libardour_sources,
'Paul Davis')
def i18n_po_func(bld):

View File

@ -318,7 +318,7 @@ def i18n_func(bld):
autowaf.build_i18n(bld, '.', 'libs/tk/ytk', I18N_PACKAGE + bld.env['MAJOR'], libytk_sources)
def i18n_pot_func(bld):
autowaf.build_i18n(bld, '.', 'libs/tk/ytk', I18N_PACKAGE + bld.env['MAJOR'], libytk_sources)
autowaf.build_i18n_pot(bld, '.', 'libs/tk/ytk', I18N_PACKAGE + bld.env['MAJOR'], libytk_sources)
def i18n_po_func(bld):
autowaf.build_i18n_po(bld, '.', 'libs/tk/ytk', I18N_PACKAGE + bld.env['MAJOR'], libytk_sources)