Remove bad gcc flag for Darwin.  DO NOT MERGE

gcc can't handle the -Wno-int-conversion, so we need to remove this
condition for Darwin and replace it with the appropriate
LOCAL_CLANG := false

Change-Id: I9a2861535d865f447014b1fce353b86feea90d22
diff --git a/0.153/libebl/Android.mk b/0.153/libebl/Android.mk
index 224c797..85a88d0 100755
--- a/0.153/libebl/Android.mk
+++ b/0.153/libebl/Android.mk
@@ -85,12 +85,10 @@
 
 LOCAL_CFLAGS += -DHAVE_CONFIG_H -std=gnu99 -D_GNU_SOURCE
 
-ifeq ($(HOST_OS),darwin)
-LOCAL_CFLAGS += -Wno-int-conversion
-endif
-
 LOCAL_CFLAGS += -include $(LOCAL_PATH)/../host-$(HOST_OS)-fixup/AndroidFixup.h
 
+LOCAL_CLANG := false
+
 LOCAL_MODULE:= libebl
 
 include $(BUILD_HOST_STATIC_LIBRARY)