Joined
·
82 Posts
There is no elseif???Hey guys, BaNKs on XDA helped me fix that error and I was able to complete the build for the mako !!
What to do is to go to hardware/qcom/media/Android.mk
and add this before the elseif :
Then run aCode:<br /> include hardware/qcom/display/libgenlock/Android.mk<br /> include hardware/qcom/display/libcopybit/Android.mk<br /> include hardware/qcom/display/libexternal/Android.mk<br /> include hardware/qcom/display/libgralloc/Android.mk<br /> include hardware/qcom/display/libhwcomposer/Android.mk<br /> include hardware/qcom/display/liblight/Android.mk<br /> include hardware/qcom/display/liboverlay/Android.mk<br /> include hardware/qcom/display/libqdutils/Android.mk<br /> include hardware/qcom/display/libqservice/Android.mk<br /> include hardware/qcom/display/libtilerenderer/Android.mk<br />
and start a fresh build and everything will work properlyCode:<br /> make clobber<br />
Enjoy !!
See the fix I just posted
Code:
<br />
QCOM_MEDIA_ROOT := $(call my-dir)<br />
ifneq ($(filter msm8974 msm8960 msm8660 msm7x27a msm7x30,$(TARGET_BOARD_PLATFORM)),)<br />
include $(QCOM_MEDIA_ROOT)/mm-core/Android.mk<br />
include $(QCOM_MEDIA_ROOT)/libstagefrighthw/Android.mk<br />
endif<br />
ifneq ($(filter msm8974 msm8960 msm8660 msm7x30,$(TARGET_BOARD_PLATFORM)),)<br />
include $(QCOM_MEDIA_ROOT)/mm-video/Android.mk<br />
include $(QCOM_MEDIA_ROOT)/libI420colorconvert/Android.mk<br />
endif<br />