raster pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=4b6e25d6c4731e6b8053ff0f20dada35ec9379df

commit 4b6e25d6c4731e6b8053ff0f20dada35ec9379df
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
Date:   Fri Aug 11 20:47:21 2017 +0900

    meson - remove uneeded array definition for files
    
    files is alrteady an array of file objects...
---
 src/modules/geolocation/meson.build   | 4 ++--
 src/modules/music-control/meson.build | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/modules/geolocation/meson.build 
b/src/modules/geolocation/meson.build
index 817d0e0d1..5f6c19021 100644
--- a/src/modules/geolocation/meson.build
+++ b/src/modules/geolocation/meson.build
@@ -8,9 +8,9 @@ created_file = [
   'eldbus_utils.h'
 ]
 
-src = [files(
+src = files(
   'e_mod_main.c'
-)]
+)
 
 src += custom_target('geolocation_gen',
                      input  : 'org.freedesktop.GeoClue2.xml',
diff --git a/src/modules/music-control/meson.build 
b/src/modules/music-control/meson.build
index ffe933619..996b4196f 100644
--- a/src/modules/music-control/meson.build
+++ b/src/modules/music-control/meson.build
@@ -6,12 +6,12 @@ created_file = [
   'eldbus_utils.h'
 ]
 
-src = [files(
+src = files(
   'e_mod_main.c',
   'ui.c',
   'e_mod_main.h',
   'private.h'
-)]
+)
 
 src += custom_target('gen-dbus',
                      input  : 'introspect.xml',

-- 


Reply via email to