diff options
author | Arne Schwabe <arne@rfc2549.org> | 2016-01-11 10:48:23 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2016-01-11 10:48:23 +0100 |
commit | 4f71315dcd2d8899d2fc8ce32358f098b991e22e (patch) | |
tree | 9f1836f38f4b1aa2435ab510236a825f62abf468 /main/jni/Android.mk | |
parent | a71df5fde27f29a32725e5f729f6ae429545cb0e (diff) |
Remove breakpad, it currently does not compile and is not used in builds (closes #428)
Infrastructure for breakpad still but the breakpad itself at the moment does not even compile
Diffstat (limited to 'main/jni/Android.mk')
-rw-r--r-- | main/jni/Android.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/jni/Android.mk b/main/jni/Android.mk index a9f9cec1..c61db83e 100644 --- a/main/jni/Android.mk +++ b/main/jni/Android.mk @@ -18,9 +18,9 @@ ifeq ($(TARGET_ARCH),mips64) USE_BREAKPAD=0 endif -ifneq ($(USE_BREAKPAD),0) +ifeq ($(USE_BREAKPAD),1) WITH_BREAKPAD=1 - include google-breakpad/android/google_breakpad/Android.mk + include breakpad/android/google_breakpad/Android.mk else WITH_BREAKPAD=0 endif |