diff options
author | Tapani Pälli <[email protected]> | 2012-08-17 10:32:53 +0300 |
---|---|---|
committer | Matt Turner <[email protected]> | 2012-08-23 10:13:38 -0700 |
commit | 2ddfca98378a1eb4044e8e9d7168d73443709068 (patch) | |
tree | 98f97c76090a39c1844c4780b059760ac97cf169 /src/glsl/Android.mk | |
parent | a6b8b709cdc280d3dc77cd9f78654726132d22bb (diff) |
build/glsl: fix android build v2
Commit 77a3efc6b907943903190b385fdf107c4acfcdca broke android build that
sets its own value for GLSL_SRCDIR before including Makefile.sources.
Patch moves overriding the value after include, this works as GLSL_SRCDIR
variable gets expanded only later.
Reviewed-by: Matt Turner <[email protected]>
Signed-off-by: Tapani Pälli <[email protected]>
Diffstat (limited to 'src/glsl/Android.mk')
-rw-r--r-- | src/glsl/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/Android.mk b/src/glsl/Android.mk index 66c8bec3297..87a02f51b8c 100644 --- a/src/glsl/Android.mk +++ b/src/glsl/Android.mk @@ -25,9 +25,9 @@ LOCAL_PATH := $(call my-dir) -GLSL_SRCDIR = . include $(LOCAL_PATH)/Makefile.sources +GLSL_SRCDIR = . # --------------------------------------- # Build libmesa_glsl # --------------------------------------- |