Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3062)

Unified Diff: build/android/adb_gdb

Issue 292983014: Fixed some problems with tools. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed mistakenly added file Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/adb_gdb
diff --git a/build/android/adb_gdb b/build/android/adb_gdb
index 16f875c072664582ec4aa91e439496f63db6568f..93bb317c713ded7574b0da8259fab592028cca0f 100755
--- a/build/android/adb_gdb
+++ b/build/android/adb_gdb
@@ -16,7 +16,7 @@ PROGNAME=$(basename "$0")
PROGDIR=$(dirname "$0")
# Location of Chromium-top-level sources.
-CHROMIUM_SRC=$(cd "$PROGDIR"/../.. && pwd 2>/dev/null)
+CHROMIUM_SRC=$(cd "$PROGDIR"/../.. >/dev/null && pwd 2>/dev/null)
# Location of Chromium out/ directory.
if [ -z "$CHROMIUM_OUT_DIR" ]; then
@@ -991,6 +991,6 @@ if [ "$VERBOSE" -gt 0 ]; then
echo "### END $COMMANDS"
fi
-log "Launching gdb client: $GDB $GDBARGS -x $COMMANDS"
-$GDB $GDBARGS -x $COMMANDS &&
+log "Launching gdb client: $GDB $GDB_ARGS -x $COMMANDS"
+$GDB $GDB_ARGS -x $COMMANDS &&
rm -f "$GDBSERVER_PIDFILE"
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698