autotools: fix build with correct VPATH support.

Summary:
The build was failing with "modules/evas/engines/gl_common/shader_3d/gen_shaders_3d.sh not found" on Mac OSX.

The recipe of a rule will execute as written. Changed it to use automatic variables. Ref.: http://www.gnu.org/software/make/manual/make.html#Recipes_002fSearch

Reviewers: q66, herdsman, vtorri

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D2002
This commit is contained in:
Guilherme Lepsch 2015-02-23 17:57:25 +01:00 committed by Cedric BAIL
parent 648ad2591c
commit 52152ef757
1 changed files with 2 additions and 2 deletions

View File

@ -727,7 +727,7 @@ $(GL_SHADERS_GEN)
modules/evas/engines/gl_common/shader/evas_gl_shaders.x: modules/evas/engines/gl_common/shader/gen_shaders.sh $(GL_SHADERS_GEN)
@echo " SHADERS $@"
@modules/evas/engines/gl_common/shader/gen_shaders.sh $(GL_SHADERS_GEN)
@$^
modules/evas/engines/gl_common/shader/evas_gl_enum.x: modules/evas/engines/gl_common/shader/evas_gl_shaders.x
@ -760,7 +760,7 @@ modules/evas/engines/gl_common/shader_3d/evas_gl_3d_shaders.x
modules/evas/engines/gl_common/shader_3d/evas_gl_3d_shaders.x: modules/evas/engines/gl_common/shader_3d/gen_shaders_3d.sh $(GL_SHADERS_3D_GEN)
@echo " SHADERS_3D $@"
@modules/evas/engines/gl_common/shader_3d/gen_shaders_3d.sh $(GL_SHADERS_3D_GEN)
@$^
GL_GENERIC_SOURCES = \