summaryrefslogtreecommitdiffstats
path: root/scripts/remote-gdb
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2015-01-23 12:41:06 +0000
committerJo-Philipp Wich <jow@openwrt.org>2015-01-23 12:41:06 +0000
commit9694917416046b948fe6f814073133f13c641f39 (patch)
tree7089aab956231780c9b49a38e030eb2496fbfd2a /scripts/remote-gdb
parentb54f3ad6e7c44d3af65a7383f6bffcc0e7fc63ae (diff)
downloadmaster-31e0f0ae-9694917416046b948fe6f814073133f13c641f39.tar.gz
master-31e0f0ae-9694917416046b948fe6f814073133f13c641f39.tar.bz2
master-31e0f0ae-9694917416046b948fe6f814073133f13c641f39.zip
scripts: remote-gdb: fix target / libc matching on directory names
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 44088
Diffstat (limited to 'scripts/remote-gdb')
-rwxr-xr-xscripts/remote-gdb4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/remote-gdb b/scripts/remote-gdb
index ce96dd2c43..cd59033e7a 100755
--- a/scripts/remote-gdb
+++ b/scripts/remote-gdb
@@ -14,7 +14,7 @@ if( opendir SD, "$Bin/../staging_dir" )
{
my ( $tid, $arch, $libc, @arches );
- if( $ARGV[1] =~ m!\btarget-(.+?)_(([^_]+libc|musl)[^/]+)\b!i )
+ if( $ARGV[1] =~ m!\btarget-(.+?)_(([^/_]+libc|musl)[^/]+)\b!i )
{
print("Using target $1 ($2)\n");
($arch, $libc) = ($1, $2);
@@ -26,7 +26,7 @@ if( opendir SD, "$Bin/../staging_dir" )
while( defined( my $e = readdir SD ) )
{
- if( -d "$Bin/../staging_dir/$e" && $e =~ /^target-(.+?)_(([^_]+.libc|musl)+)/i )
+ if( -d "$Bin/../staging_dir/$e" && $e =~ /^target-(.+?)_(([^_]+libc|musl).+)/i )
{
push @arches, [ $1, $2 ];
printf(" %2d) %s (%s)\n", @arches + 0, $1, $2);