From 74a69f60316cdf3add5af4136f98f92ea5754335 Mon Sep 17 00:00:00 2001 From: "shashishekhar@chromium.org" Date: Mon, 7 Oct 2013 20:50:49 +0000 Subject: [PATCH] Fix adb_gdb script. Fix a typo in the script. BUG=304931 R=digit@chromium.org Review URL: https://codereview.chromium.org/26337002 git-svn-id: http://src.chromium.org/svn/trunk/src/build@227340 4ff67af0-8c30-449e-8e8b-ad334ec8d88c --- android/adb_gdb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/adb_gdb b/android/adb_gdb index c3ae3be6d..4ff4eea65 100755 --- a/android/adb_gdb +++ b/android/adb_gdb @@ -547,7 +547,7 @@ ANDROID_TOOLCHAIN=${ANDROID_TOOLCHAIN%/} # Find host GDB client binary if [ -z "$GDB" ]; then GDB=$(which $ANDROID_TOOLCHAIN/*-$GDBEXEPOSTFIX 2>/dev/null | head -1) - if [ -z "$GDBSERVER" ]; then + if [ -z "$GDB" ]; then panic "Can't find Android gdb client in your path, check your \ --toolchain or --gdb path." fi