[rygel] build: Fix unquoted version in pkg-config



commit f01df8e3b8aba7348258b2650d006edbeba862df
Author: Jens Georg <mail jensge org>
Date:   Sat Oct 5 11:04:47 2019 +0200

    build: Fix unquoted version in pkg-config

 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/meson.build b/meson.build
index bf3e1eb7..6e32e421 100644
--- a/meson.build
+++ b/meson.build
@@ -150,7 +150,7 @@ pc_conf.set('prefix', get_option('prefix'))
 pc_conf.set('exec_prefix', '${prefix}')
 pc_conf.set('libdir', join_paths(get_option('prefix'), get_option('libdir')))
 pc_conf.set('includedir', join_paths('${prefix}', get_option('includedir')))
-pc_conf.set('VERSION', '"@0@"'.format(meson.project_version()))
+pc_conf.set('VERSION', '@0@'.format(meson.project_version()))
 pc_conf.set('RYGEL_PLUGIN_DIR', rygel_plugindir)
 pc_conf.set('RYGEL_MEDIA_ENGINE_DIR', rygel_enginedir)
 pc_conf.set('RYGEL_PLUGIN_LINKER_FLAGS', '')


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]