summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel.lh Huang <samuellhhuang@google.com>2018-10-11 17:32:58 +0800
committerSamuel.lh Huang <samuellhhuang@google.com>2018-10-29 09:59:26 +0000
commitf786370693a0b28530a45bdad068c068869bbd4f (patch)
treeaa006a981fad8b5593f1aa1f494b590a8652a379
parentee59bc0b26b9f281808e2398752abe06f794e130 (diff)
downloadandroid_hardware_qcom_sdm710_display-f786370693a0b28530a45bdad068c068869bbd4f.tar.gz
android_hardware_qcom_sdm710_display-f786370693a0b28530a45bdad068c068869bbd4f.tar.bz2
android_hardware_qcom_sdm710_display-f786370693a0b28530a45bdad068c068869bbd4f.zip
displayconfig: fix the source code path
The make file will check if path existed then set the compile option. Fix the wrong path to get right option. Bug: 116557910 Test: hwc2 call the API with correct version. Change-Id: I739a6aff2b5677181a330cc04f4efc78ff9f3749
-rw-r--r--common.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/common.mk b/common.mk
index 23c9529b..c4b97bcf 100644
--- a/common.mk
+++ b/common.mk
@@ -1,13 +1,13 @@
#Common headers
display_top := $(call my-dir)
display_config_version := $(shell \
- if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.1" ];\
+ if [ -d "$(TOP)/vendor/qcom/codeaurora/interfaces/vendor/display/config/1.1" ];\
then echo DISPLAY_CONFIG_1_1; fi)
display_config_version := $(shell \
- if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.2" ];\
+ if [ -d "$(TOP)/vendor/qcom/codeaurora/interfaces/vendor/display/config/1.2" ];\
then echo DISPLAY_CONFIG_1_2; fi)
display_config_version := $(shell \
- if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.3" ];\
+ if [ -d "$(TOP)/vendor/qcom/codeaurora/interfaces/vendor/display/config/1.3" ];\
then echo DISPLAY_CONFIG_1_3; fi)
#Common C flags