Merge branch 'glib-gettextize' into 'master'

meson: fix typo

See merge request GNOME/glib!295
This commit is contained in:
Philip Withnall 2018-09-03 12:18:36 +00:00
commit b79bafccfe

View File

@ -1984,17 +1984,17 @@ subdir('tests')
# Install glib-gettextize executable, if a UNIX-style shell is found # Install glib-gettextize executable, if a UNIX-style shell is found
if have_sh if have_sh
# These should not contain " quotes around the values # These should not contain " quotes around the values
gettexize_conf = configuration_data() gettextize_conf = configuration_data()
gettexize_conf.set('PACKAGE', 'glib') gettextize_conf.set('PACKAGE', 'glib')
gettexize_conf.set('VERSION', meson.project_version()) gettextize_conf.set('VERSION', meson.project_version())
gettexize_conf.set('prefix', glib_prefix) gettextize_conf.set('prefix', glib_prefix)
gettexize_conf.set('datarootdir', glib_datadir) gettextize_conf.set('datarootdir', glib_datadir)
gettexize_conf.set('datadir', glib_datadir) gettextize_conf.set('datadir', glib_datadir)
configure_file(input : 'glib-gettextize.in', configure_file(input : 'glib-gettextize.in',
install : true, install : true,
install_dir : glib_bindir, install_dir : glib_bindir,
output : 'glib-gettextize', output : 'glib-gettextize',
configuration : gettexize_conf) configuration : gettextize_conf)
endif endif
if have_m4 if have_m4