aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-12 18:01:03 +0000
committerSteve Block <steveblock@google.com>2012-01-17 12:12:04 +0000
commit35e02d4f35686cd3d202dab09aa0fdf24651afed (patch)
tree24e45e354c138d872693e447b57fe49d17b20be1
parent692be65d6b06edd9ff4cfc4c308555b7c99c1191 (diff)
downloadv8-35e02d4f35686cd3d202dab09aa0fdf24651afed.tar.gz
Remove superfluous include path from Makefile
This include path was added to protect agaisnt picking up the wrong memory.h, but this is not needed as we no longer include any files of that name. See https://android-git.corp.google.com/g/#/c/40117. Change-Id: Ib9396dcd16aef287f0a1a1bde76d848c7beb4d37
-rw-r--r--Android.libv8.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.libv8.mk b/Android.libv8.mk
index 76958079..14c4e19f 100644
--- a/Android.libv8.mk
+++ b/Android.libv8.mk
@@ -90,6 +90,6 @@ ifeq ($(DEBUG_V8),true)
LOCAL_CFLAGS += -DDEBUG -UNDEBUG
endif
-LOCAL_C_INCLUDES += bionic/libc/include $(LOCAL_PATH)/src
+LOCAL_C_INCLUDES := $(LOCAL_PATH)/src
include $(BUILD_STATIC_LIBRARY)