diff options
author | Eli Zaretskii <eliz@gnu.org> | 2004-07-30 19:17:20 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2004-07-30 19:17:20 +0000 |
commit | 014d698b35008f566973fc2fe0d4a0d3e3009a06 (patch) | |
tree | 22e582437f29fe08fbbc4ee270a97a028d19564d /gdb/nto-tdep.c | |
parent | be7d7357efe8cad63c8920b7fa69f6d2324d6fa5 (diff) | |
download | gdb-014d698b35008f566973fc2fe0d4a0d3e3009a06.zip gdb-014d698b35008f566973fc2fe0d4a0d3e3009a06.tar.gz gdb-014d698b35008f566973fc2fe0d4a0d3e3009a06.tar.bz2 |
* defs.h (OPF_TRY_CWD_FIRST, OPF_SEARCH_IN_PATH): New macros.
* exec.c (exec_file_attach):
* nto-tdep.c (nto_find_and_open_solib):
* pa64solib.c (pa64_solib_sizeof_symbol_table):
* solib.c (solib_open):
* somsolib.c (som_solib_sizeof_symbol_table):
* source.c (is_regular_file, openp, open_source_file):
* symfile.c (symfile_bfd_open):
* wince.c (upload_to_device): Differentiate between the search for
binary and source files.
Diffstat (limited to 'gdb/nto-tdep.c')
-rw-r--r-- | gdb/nto-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/nto-tdep.c b/gdb/nto-tdep.c index f562ebd..50b4fc5 100644 --- a/gdb/nto-tdep.c +++ b/gdb/nto-tdep.c @@ -115,7 +115,7 @@ nto_find_and_open_solib (char *solib, unsigned o_flags, char **temp_pathname) sprintf (buf, path_fmt, arch_path, arch_path, arch_path, arch_path, arch_path); - return openp (buf, 1, solib, o_flags, 0, temp_pathname); + return openp (buf, OPF_TRY_CWD_FIRST, solib, o_flags, 0, temp_pathname); } void |