summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrazorloves <razorloves@gmail.com>2020-01-09 07:18:07 -0600
committerrazorloves <razorloves@gmail.com>2020-01-09 07:18:07 -0600
commitf6278091477f0c13d0b9906a051827d1c8ad1b7d (patch)
tree1bed5cccae0a52eac20e6a030db16c85f556d6a9
parentb81f00d7fb29c2710f9c05e8e31c02de9315f50a (diff)
downloadandroid_hardware_qcom_sdm845_display-f6278091477f0c13d0b9906a051827d1c8ad1b7d.tar.gz
android_hardware_qcom_sdm845_display-f6278091477f0c13d0b9906a051827d1c8ad1b7d.tar.bz2
android_hardware_qcom_sdm845_display-f6278091477f0c13d0b9906a051827d1c8ad1b7d.zip
display: Fix path to vendor/qcom/opensource
QC_OPEN_PATH is not defined anywhere, so display_config_version was not being set properly, resulting in broken hwcomposer. Change-Id: I29b2e902af6a157c863408ed5f60be115caa859f
-rw-r--r--common.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/common.mk b/common.mk
index fdfd1fff..8e51dd6c 100644
--- a/common.mk
+++ b/common.mk
@@ -1,13 +1,13 @@
#Common headers
display_top := $(call my-dir)
display_config_version := $(shell \
- if [ -d "$(QC_OPEN_PATH)/interfaces/vendor/display/config/1.1" ];\
+ if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.1" ];\
then echo DISPLAY_CONFIG_1_1; fi)
display_config_version := $(shell \
- if [ -d "$(QC_OPEN_PATH)/interfaces/vendor/display/config/1.2" ];\
+ if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.2" ];\
then echo DISPLAY_CONFIG_1_2; fi)
display_config_version := $(shell \
- if [ -d "$(QC_OPEN_PATH)/interfaces/vendor/display/config/1.3" ];\
+ if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.3" ];\
then echo DISPLAY_CONFIG_1_3; fi)
#Common C flags