Add missing shared library used in executable to linker command.  This executable
calls functions defined in a shared library without explicitly linking it. Currently
it works because the library is linked via dependency of another shared library.
This is fragile and not the right thing to do.
diff --git a/sta_dk_4_0_4_32/CUDK/tiwlan_loader/Android.mk b/sta_dk_4_0_4_32/CUDK/tiwlan_loader/Android.mk
index 1d828db..1851248 100644
--- a/sta_dk_4_0_4_32/CUDK/tiwlan_loader/Android.mk
+++ b/sta_dk_4_0_4_32/CUDK/tiwlan_loader/Android.mk
@@ -79,7 +79,7 @@
 else
 LOCAL_SHARED_LIBRARIES := libWifiApi
 endif
-LOCAL_SHARED_LIBRARIES += libc libhardware_legacy
+LOCAL_SHARED_LIBRARIES += libcutils liblog libc libhardware_legacy
 
 INCLUDES = $(DK_INCS) $(CLI_STA_DK_ROOT)/pform/linux/inc \
 	$(CLI_CUDK_ROOT)/Inc                             \