[glade/glade-3-36] build: Fix va_copy check



commit 14e7fbf074c572072de4ff3e754f9a9582f33a15
Author: Iñigo Martínez <inigomartinez gmail com>
Date:   Thu Jun 18 09:11:25 2020 +0200

    build: Fix va_copy check
    
    There is a misplaced closing parenthesis in `va_copy`
    check that triggers a warning in meson.
    
    It has been fixed by placing it properly.

 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/meson.build b/meson.build
index f623e451..b3aad2f3 100644
--- a/meson.build
+++ b/meson.build
@@ -119,7 +119,7 @@ va_copy_src = '''
     };
 '''
 
-if not cc.links(va_copy_src.format('va_copy', name: 'how to copy va_list'))
+if not cc.links(va_copy_src.format('va_copy'), name: 'how to copy va_list')
   if cc.links(va_copy_src.format('__va_copy'))
     config_h.set('va_copy', '__va_copy')
   else


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