commit | 7b31dd10948abccc9c8b2f949edbe84de15702d5 | [log] [tgz] |
---|---|---|
author | Colin Cross <ccross@android.com> | Mon May 23 22:05:27 2016 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon May 23 22:05:27 2016 +0000 |
tree | 11b2061c703d9edc3b8136af54376b83d76be263 | |
parent | c11ae6c569c26607a165e6fe491008bdd272d981 [diff] | |
parent | b267cbabba0c7ebceedaa94091b128d4e4f7cb22 [diff] |
Merge "Error on USE_CLANG_PLATFORM_BUILD="
diff --git a/core/envsetup.mk b/core/envsetup.mk index c3cd3c5..1a79ce2 100644 --- a/core/envsetup.mk +++ b/core/envsetup.mk
@@ -475,3 +475,9 @@ ifeq ($(USE_CLANG_PLATFORM_BUILD),) USE_CLANG_PLATFORM_BUILD := true endif + +ifneq ($(USE_CLANG_PLATFORM_BUILD),true) +ifneq ($(USE_CLANG_PLATFORM_BUILD),false) +$(error USE_CLANG_PLATFORM_BUILD must be true or false) +endif +endif