versioner: Ignore if Clang is missing

This happens in some branches. Work around for now.

Change-Id: I75c01a3ae52ce89f6c56a19728903bf86db0a309
This commit is contained in:
Andreas Gampe 2016-08-12 19:10:21 -07:00
parent e73fc63f96
commit 64da006063

View file

@ -3,8 +3,11 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
include $(CLEAR_TBLGEN_VARS)
LLVM_ROOT_PATH := external/llvm
# Only do this when Clang is available.
CLANG_ROOT_PATH := external/clang
ifneq ($(wildcard $(CLANG_ROOT_PATH)/clang.mk),)
LLVM_ROOT_PATH := external/llvm
include $(CLANG_ROOT_PATH)/clang.mk
LOCAL_MODULE := versioner
@ -41,3 +44,5 @@ LOCAL_CPPFLAGS := -std=c++14 -fno-rtti
LOCAL_MODULE_HOST_OS := linux
include $(BUILD_HOST_EXECUTABLE)
endif