diff options
author | Chih-Wei Huang <[email protected]> | 2015-04-02 14:16:33 +0800 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-04-22 15:53:35 +0100 |
commit | 076edc6a036cb7601e010b7851eeaa7cfb1aa4e6 (patch) | |
tree | 8a86fe32f82e825674c5a3e0fbd86defd6886fcc /src | |
parent | 8098bf8e7a975a18b271b44e760ff86feddb0472 (diff) |
android: fix a building error of libmesa_program
Add libmesa_glsl to LOCAL_STATIC_LIBRARIES to get
its exported include path (for nir_opcodes.h).
Signed-off-by: Chih-Wei Huang <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/program/Android.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/program/Android.mk b/src/mesa/program/Android.mk index 374fcbf0bf3..af16e779db0 100644 --- a/src/mesa/program/Android.mk +++ b/src/mesa/program/Android.mk @@ -44,6 +44,7 @@ include $(CLEAR_VARS) LOCAL_MODULE := libmesa_program LOCAL_MODULE_CLASS := STATIC_LIBRARIES +LOCAL_STATIC_LIBRARIES := libmesa_glsl intermediates := $(call local-intermediates-dir) |