Add explict check for msm8960 target in makefile

Change-Id: I4664b54ff2dc84608e2a08e9a50eb6e45b46571c
This commit is contained in:
Ajay Dudani 2014-11-20 17:53:26 -08:00 committed by Vineeta Srivastava
parent 45342632aa
commit 9e924dd836
1 changed files with 2 additions and 1 deletions

View File

@ -9,8 +9,9 @@ else
ifneq ($(filter msm8226 msm8x26,$(TARGET_BOARD_PLATFORM)),)
include $(call all-named-subdir-makefiles,msm8226)
else
#This is for 8960 based platforms
ifneq ($(filter msm8960,$(TARGET_BOARD_PLATFORM)),)
include $(call all-named-subdir-makefiles,msm8960)
endif
endif
endif
endif