[recipes] Don't put unquoted strings into config.h



commit a897e3b3ce7be4130a012f1227a61a8ba98bbeac
Author: Matthias Clasen <mclasen redhat com>
Date:   Sat Mar 11 20:01:13 2017 -0500

    Don't put unquoted strings into config.h
    
    I'm surprised this didn't cause the build to fail.

 meson.build |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/meson.build b/meson.build
index eeb9249..4fbbe41 100644
--- a/meson.build
+++ b/meson.build
@@ -95,8 +95,8 @@ conf.set_quoted('LOCALEDIR', join_paths([ get_option('prefix'),
                                           'locale' ]))
 
 # Used while generating cuisine.css and the dbus service file
-conf.set('pkgdatadir', pkgdatadir)
-conf.set('bindir', bindir)
+conf.set_quoted('pkgdatadir', pkgdatadir)
+conf.set_quoted('bindir', bindir)
 
 configure_file(output : 'config.h', configuration : conf)
 


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