diff options
author | Pedro Alves <palves@redhat.com> | 2010-02-17 23:07:24 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-02-17 23:07:24 +0000 |
commit | 061b528517208800e3f1adc721c40421fc360f37 (patch) | |
tree | d3fd703b1a6517df5890dff8d2dce70bb587343f /gdb/testsuite/lib | |
parent | 51e139990ee36293871e2d3080c4163098cb0201 (diff) | |
download | gdb-061b528517208800e3f1adc721c40421fc360f37.zip gdb-061b528517208800e3f1adc721c40421fc360f37.tar.gz gdb-061b528517208800e3f1adc721c40421fc360f37.tar.bz2 |
* lib/gdb.exp (build_id_debug_filename_get): Don't assume new
`regsub' syntax available.
Diffstat (limited to 'gdb/testsuite/lib')
-rw-r--r-- | gdb/testsuite/lib/gdb.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index a42d551..627941d 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -2830,7 +2830,7 @@ proc build_id_debug_filename_get { exec } { } # Convert it to hex. binary scan $data H* data - set data [regsub {^..} $data {\0/}] + regsub {^..} $data {\0/} data return ".build-id/${data}.debug"; } |