From f2111102cf40b004e1fa3af98cefb3782ddeb5d9 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Thu, 18 Feb 2016 13:25:21 -0800 Subject: build: fix duplicated use of the variable in multiple Makefile_*.am. GL_SHADERS_GEN is defined in the Makefile.am of Ector and Evas. As these Mafile_*.am are included in the same Makefile.am, there is a warning with multiple defined triggered by automake. So this patch rename these 2 variables Test Plan: autogen.sH Reviewers: jpeg, cedric Differential Revision: https://phab.enlightenment.org/D3711 Signed-off-by: Cedric BAIL --- src/Makefile_Ector.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Makefile_Ector.am') diff --git a/src/Makefile_Ector.am b/src/Makefile_Ector.am index bbe1763b44..f1a8178a08 100644 --- a/src/Makefile_Ector.am +++ b/src/Makefile_Ector.am @@ -133,13 +133,13 @@ lib/ector/gl/ector_gl_private.h \ lib/ector/gl/shader/ector_gl_shaders.x \ lib/ector/gl/ector_gl_shader.c -GL_SHADERS_GEN = \ +ECTOR_GL_SHADERS_GEN = \ lib/ector/gl/shader/gen_shaders.sh \ lib/ector/gl/shader/fragment.glsl \ lib/ector/gl/shader/vertex.glsl \ lib/ector/gl/shader/include.glsl -lib/ector/gl/shader/ector_gl_shaders.x: $(GL_SHADERS_GEN) +lib/ector/gl/shader/ector_gl_shaders.x: $(ECTOR_GL_SHADERS_GEN) @echo " SHADERS $@" @bash $(srcdir)/lib/ector/gl/shader/gen_shaders.sh @@ -201,4 +201,4 @@ static_libs/freetype/sw_ft_stroker.h \ static_libs/freetype/sw_ft_types.h \ static_libs/draw/draw.h \ static_libs/draw/draw_private.h \ -$(GL_SHADERS_GEN) +$(ECTOR_GL_SHADERS_GEN) -- cgit v1.2.1