[grilo-plugins] meson: glib_compile_resources required for lua-factory



commit f93e959f0243f5207dd23bbed21b8be20dfa76b4
Author: Juan A. Suarez Romero <jasuarez igalia com>
Date:   Sun Feb 12 01:06:19 2017 +0100

    meson: glib_compile_resources required for lua-factory
    
    Fix a missing "not" when checking for glib-compile resource.

 meson.build |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/meson.build b/meson.build
index 5d55013..d8a8801 100644
--- a/meson.build
+++ b/meson.build
@@ -129,7 +129,7 @@ endforeach
 if lua_factory_enabled
     if get_option('enable-lua-factory') == 'auto'
         lua_factory_enabled = lua_factory_enabled and gperf.found() and glib_compile_resources.found()
-    elif not gperf.found() or glib_compile_resources.found()
+    elif not gperf.found() or not glib_compile_resources.found()
         error('Missing dependencies for lua-factory plugin')
     endif
 endif


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