Message ID | 1532474502-17657-5-git-send-email-john.stultz@linaro.org |
---|---|
State | New |
Headers | show |
Series | Trying to align mesa upstream w/ AOSP/master | expand |
diff --git a/Android.mk b/Android.mk index 914854c..494b4b9 100644 --- a/Android.mk +++ b/Android.mk @@ -29,6 +29,7 @@ # The main target is libGLES_mesa. For each classic driver enabled, a DRI # module will also be built. DRI modules will be loaded by libGLES_mesa. +ifneq ($(BOARD_USE_CUSTOMIZED_MESA), true) MESA_TOP := $(call my-dir) MESA_ANDROID_MAJOR_VERSION := $(word 1, $(subst ., , $(PLATFORM_VERSION))) @@ -125,3 +126,5 @@ SUBDIRS := \ INC_DIRS := $(call all-named-subdir-makefiles,$(SUBDIRS)) INC_DIRS += $(call all-named-subdir-makefiles,src/gallium) include $(INC_DIRS) + +endif