meson: fix typo

This commit is contained in:
Jan Tojnar 2018-09-02 20:35:26 +02:00
parent f2504be625
commit 48821a50b4
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1952,17 +1952,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 : 'bin', install_dir : 'bin',
output : 'glib-gettextize', output : 'glib-gettextize',
configuration : gettexize_conf) configuration : gettextize_conf)
endif endif
if have_m4 if have_m4