[gedit/zbrown/deteplification-src: 87/633] build: host_machine.system() returns 'darwin', not 'ios'




commit adb300a3b97792e8b0f73654b9e84611a172e8e2
Author: Sébastien Wilmet <swilmet gnome org>
Date:   Thu Dec 5 15:43:52 2019 +0100

    build: host_machine.system() returns 'darwin', not 'ios'
    
    According to the Meson docs. Not tested.

 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/meson.build b/meson.build
index 7571d934a..a4cd323a7 100644
--- a/meson.build
+++ b/meson.build
@@ -123,7 +123,7 @@ configure_file(
 module_suffix = []
 # Keep the autotools convention for shared module suffix because GModule
 # depends on it: https://gitlab.gnome.org/GNOME/glib/issues/520
-if ['darwin', 'ios'].contains(host_machine.system())
+if host_machine.system() == 'darwin'
   module_suffix = 'so'
   add_languages('objc')
 endif


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