Don't do the check build step for apps that link against the SDK.

We already have the apicheck process to make sure that nobody breaks that,
so doing the extra check isn't necessary.
This commit is contained in:
Joe Onorato 2010-01-05 12:47:14 -08:00
parent bc8abb6fec
commit 05c7f61caf
1 changed files with 3 additions and 1 deletions

View File

@ -429,7 +429,9 @@ endif # !LOCAL_UNINSTALLABLE_MODULE
# checked modules, use LOCAL_BUILT_MODULE. This was old
# behavior, so it should be a safe default.
ifndef LOCAL_CHECKED_MODULE
LOCAL_CHECKED_MODULE := $(LOCAL_BUILT_MODULE)
ifndef LOCAL_SDK_VERSION
LOCAL_CHECKED_MODULE := $(LOCAL_BUILT_MODULE)
endif
endif
# If they request that this module not be checked, then don't.