From e42000db1aecaa18bbd114318265736584a85200 Mon Sep 17 00:00:00 2001 From: Subhani Shaik Date: Thu, 24 Jul 2014 18:01:09 -0700 Subject: [PATCH] framework: softap enablement through ndc commands. The softap libraries were missing for the 64bit enablement through ndc commands. Makefile change required to point to right kernel include files. Change-Id: I03cdd609c2fa18f9926de7d67a2c7d5957a81317 --- softap/jni/Android.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/softap/jni/Android.mk b/softap/jni/Android.mk index 908c203..a967bb9 100644 --- a/softap/jni/Android.mk +++ b/softap/jni/Android.mk @@ -11,10 +11,10 @@ LOCAL_MODULE := libQWiFiSoftApCfg LOCAL_MODULE_TAGS := optional -LOCAL_C_INCLUDES := $(KERNEL_HEADERS) \ +LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include \ $(JNI_H_INCLUDE) +LOCAL_ADDITIONAL_DEPENDENCIES := $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr LOCAL_SHARED_LIBRARIES := libsysutils libcutils libnetutils libcrypto include $(BUILD_SHARED_LIBRARY) -