diff options
author | Trevor Drake <trevordrake.gerrit@gmail.com> | 2014-12-06 09:27:19 +0000 |
---|---|---|
committer | Trevor Drake <trevordrake.gerrit@gmail.com> | 2014-12-06 09:27:19 +0000 |
commit | dabdbf9a6edbd204ded193234ff9508172164e20 (patch) | |
tree | a29ce35f0f34004e122899ba612d100048b22eaa /libutils/Android.mk | |
parent | 3579f043fbca8ecf7fefd5cc1889639d356ddd4b (diff) | |
download | system_core-dabdbf9a6edbd204ded193234ff9508172164e20.zip system_core-dabdbf9a6edbd204ded193234ff9508172164e20.tar.gz system_core-dabdbf9a6edbd204ded193234ff9508172164e20.tar.bz2 |
Clean up libutils Android.mk
Removed LOCAL_C_INCLUDES as the external/zlib headers are no longer
referenced by anything in libutils.
Removed unused host_commonLdlibs build variable. This was referenced
by the lib64utils host target which was removed in commit 03cc1f747
Tested compiling some of the projects that make use of libcutils
using a clean out dir with the folllowing targets
aosp_arm-eng : make -j16 logd dexdump
aosp-flouder-userdebug : make -j16 keystore vold libjavacore logd
aosp-x86_64-eng : make -j16 keystore vold libjavacore logd dexdump
Change-Id: I663e52bbf28dde27866dad9429bf95ada6b594a5
Diffstat (limited to 'libutils/Android.mk')
-rw-r--r-- | libutils/Android.mk | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libutils/Android.mk b/libutils/Android.mk index e738c15..52de910 100644 --- a/libutils/Android.mk +++ b/libutils/Android.mk @@ -53,13 +53,6 @@ host_commonCflags += -DMB_CUR_MAX=1 endif endif -host_commonLdlibs := - -ifeq ($(TARGET_OS),linux) -host_commonLdlibs += -lrt -ldl -endif - - # For the host # ===================================================== include $(CLEAR_VARS) @@ -93,9 +86,6 @@ LOCAL_CFLAGS += -DALIGN_DOUBLE endif LOCAL_CFLAGS += -Werror -LOCAL_C_INCLUDES += \ - external/zlib - LOCAL_STATIC_LIBRARIES := \ libcutils |