diff options
author | Jeremy Bicha <jbicha@ubuntu.com> | 2019-02-07 08:30:37 -0500 |
---|---|---|
committer | Jonathan Kang <jonathankang@gnome.org> | 2019-04-19 07:39:40 +0000 |
commit | 6574a908a5eef642a92375b94c6ef25587639bb1 (patch) | |
tree | 4263569413e4a68560196de1fa49e04808d7b528 /data | |
parent | 669689ac609e3d5ca1664fb464e55bd965b99cc3 (diff) | |
download | gnome-logs-6574a908a5eef642a92375b94c6ef25587639bb1.tar.gz |
build: fix manpage version number
Diffstat (limited to 'data')
-rw-r--r-- | data/meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/data/meson.build b/data/meson.build index 66e0b74..afd3fe1 100644 --- a/data/meson.build +++ b/data/meson.build @@ -78,10 +78,13 @@ install_data( install_dir : join_paths(gl_datadir, 'glib-2.0', 'schemas') ) +version_conf = configuration_data() +version_conf.set('PACKAGE_VERSION', gl_version) + configure_file( input : 'version.xml.in', output : 'version.xml', - command : ['cp', '@INPUT@', '@OUTPUT@'] + configuration: version_conf, ) if logs_enable_man |