From 248b832d44f4b218e8fdd4b9ac68e6f80f632a3e Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Thu, 14 Dec 2017 13:52:04 -0800 Subject: [PATCH] Depend on the more specific ndk timestamp. There are now two NDK sysroot timestamp files: ndk_base which depends on the headers and stub libraries, and ndk which depends on ndk_base and the static libraries. For building modules that need the NDK, we only need to depend on the base sysroot. Test: make native Bug: None Change-Id: I803032eda125a632d780c9cde10f47270491d0d2 --- core/binary.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/binary.mk b/core/binary.mk index 2f306b2c3..2b356d48b 100644 --- a/core/binary.mk +++ b/core/binary.mk @@ -88,7 +88,7 @@ ifneq ($(LOCAL_SDK_VERSION),) endif # Make sure we've built the NDK. - my_additional_dependencies += $(SOONG_OUT_DIR)/ndk.timestamp + my_additional_dependencies += $(SOONG_OUT_DIR)/ndk_base.timestamp # mips32r6 is not supported by the NDK. No released NDK contains these # libraries, but the r10 in prebuilts/ndk had a local hack to add them :(