1
1
mirror of https://gitlab.gnome.org/GNOME/gimp.git synced 2025-10-05 21:02:42 +02:00

po-windows-installer: fix building the pot file.

When running `ninja gimp30-windows-installer-pot`, we had this error:

```
[0/2] Running external command gimp30-windows-installer-pot
/usr/bin/xgettext: warning: ITS rule file 'gimp-ms-installer-config.its' does not exist; check your gettext installation
/usr/bin/xgettext: warning: file 'build/windows/installer/lang/setup.isl.xml.in' extension 'xml' is unknown; will try C
```
This commit is contained in:
Jehan
2025-09-23 12:13:48 +02:00
parent b50781730c
commit c5e77fb8bb

View File

@@ -1,3 +1,6 @@
po_windows_installer_dir = meson.current_source_dir() po_windows_installer_dir = meson.current_source_dir()
i18n.gettext(gettext_package + '-windows-installer', preset: 'glib', install: false, i18n.gettext(gettext_package + '-windows-installer', preset: 'glib', install: false,
data_dirs: meson.project_source_root() / 'build' / 'windows' / 'installer' / 'lang') data_dirs: [
meson.project_source_root() / 'build' / 'windows' / 'installer' / 'lang',
meson.project_build_root() / 'build' / 'windows' / 'installer' / 'lang',
])