From ead1be7bd6735a52b5e1d90f10885525d6ff5f15 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Fri, 11 Aug 2017 14:35:24 +0900 Subject: [PATCH] meosn build - go back to requires_e it's uses in main meson.build --- src/bin/meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/meson.build b/src/bin/meson.build index b2643b9c5..cbb6b6741 100644 --- a/src/bin/meson.build +++ b/src/bin/meson.build @@ -35,7 +35,7 @@ deps_e = [ dep_elementary ] -req = ' '.join([ +requires_e = ' '.join([ 'eina >= 1.19.99', 'eet', 'ecore', @@ -407,7 +407,7 @@ if config_h.has('HAVE_WAYLAND') == true 'e_comp_wl.h' ] deps_e += dep_wayland - req = ' '.join([req, requires_wayland]) + requires_e = ' '.join([requires_e, requires_wayland]) endif if config_h.has('HAVE_WAYLAND_ONLY') == false @@ -418,7 +418,7 @@ if config_h.has('HAVE_WAYLAND_ONLY') == false 'e_xsettings.c' ] deps_e += dep_ecore_x - req = ' '.join([req, 'ecore-x']) + requires_e = ' '.join([requires_e, 'ecore-x']) endif install_headers( hdr, subdir: 'enlightenment' )