aboutsummaryrefslogtreecommitdiff
path: root/ndk-gdb
diff options
context:
space:
mode:
authorJosh Gao <jmgao@google.com>2016-03-10 01:22:54 -0800
committerJosh Gao <jmgao@google.com>2016-03-10 01:28:47 -0800
commit047f62517b7836c8d6616a8e82309e1cb2c9f1c7 (patch)
treed65ce893892cb6c39cb982290b75be2b9bcfa0b7 /ndk-gdb
parentc9b170dc9514ec9a65ef3eaf163ca2e7d32e2ef0 (diff)
downloadndk-047f62517b7836c8d6616a8e82309e1cb2c9f1c7.tar.gz
ndk-gdb: don't use readlink -f in the wrapper script.
Darwin doesn't support it, and we don't need an absolute path anyway. Bug: https://github.com/android-ndk/ndk/issues/2 Change-Id: I376911072858b75db37969955e29e2d7270958fa
Diffstat (limited to 'ndk-gdb')
-rwxr-xr-xndk-gdb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ndk-gdb b/ndk-gdb
index 645b4a93e..4342c0041 100755
--- a/ndk-gdb
+++ b/ndk-gdb
@@ -1,2 +1,2 @@
#!/bin/sh
-$(dirname $(readlink -f $0))/ndk-gdb.py $@
+$(dirname $0)/ndk-gdb.py $@