index
:
openwrt.git
OpenWrt Source Repository
log msg
author
committer
range
feature/odhcpd_odhcp6c_udhcpc-capsdrop
linksys3200ac-master
master
about
summary
refs
log
tree
commit
diff
path:
root
/
scripts
/
remote-gdb
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
author
Hamish Guthrie <hcg@openwrt.org>
2011-05-13 11:52:40 +0000
committer
Hamish Guthrie <hcg@openwrt.org>
2011-05-13 11:52:40 +0000
commit
7b53059401bd7736d9aa30575a8edc3b77438a28
(
patch
)
tree
c8049c8cdcd0a2ddea61c2e59398da1f9cc81f8b
/
scripts/remote-gdb
parent
d6e96fd7d811cf3ba0badb085190bf8ab7f6e163
(
diff
)
Correct libc path
SVN-Revision: 26885
Diffstat
(limited to 'scripts/remote-gdb')
-rwxr-xr-x
scripts/remote-gdb
3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/remote-gdb b/scripts/remote-gdb
index aad23e3246..49cdd1e22c 100755
--- a/
scripts/remote-gdb
+++ b/
scripts/remote-gdb
@@ -52,8 +52,7 @@ if( opendir SD, "$Bin/../staging_dir" )
closedir SD;
# Find gdb
- my ($gdb) = glob("$Bin/../staging_dir/toolchain-${arch}_*_${libc}/bin/*-gdb");
-
+ my ($gdb) = glob("$Bin/../staging_dir/toolchain-${arch}_*_${libc}*/bin/*-gdb");
if( defined($gdb) && -x $gdb )
{
my ( $fh, $fp ) = tempfile();