mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
2009-04-11 H.J. Lu <hongjiu.lu@intel.com>
PR ld/10047 * ldfile.c (ldfile_find_command_file): First try raw name.
This commit is contained in:
parent
ae50636032
commit
6dc6e83433
@ -1,3 +1,8 @@
|
||||
2009-04-11 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
PR ld/10047
|
||||
* ldfile.c (ldfile_find_command_file): First try raw name.
|
||||
|
||||
2009-04-09 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR 9824
|
||||
|
19
ld/ldfile.c
19
ld/ldfile.c
@ -542,10 +542,10 @@ find_scripts_dir (void)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* If DEFAULT_ONLY is false, try to open NAME; if that fails, look for
|
||||
it in directories specified with -L, then in the default script
|
||||
directory, without and with EXTEND appended. If DEFAULT_ONLY is
|
||||
true, the search is restricted to the default script location. */
|
||||
/* Try to open NAME; if that fails, look for it in directories specified
|
||||
with -L, then in the default script directory, without and with EXTEND
|
||||
appended. If DEFAULT_ONLY is true, the search is restricted to the
|
||||
default script location. */
|
||||
|
||||
static FILE *
|
||||
ldfile_find_command_file (const char *name, const char *extend,
|
||||
@ -556,13 +556,10 @@ ldfile_find_command_file (const char *name, const char *extend,
|
||||
char *buffer;
|
||||
static search_dirs_type *script_search;
|
||||
|
||||
if (!default_only)
|
||||
{
|
||||
/* First try raw name. */
|
||||
result = try_open (name, "");
|
||||
if (result != NULL)
|
||||
return result;
|
||||
}
|
||||
/* First try raw name for uninstalled linker. */
|
||||
result = try_open (name, "");
|
||||
if (result != NULL)
|
||||
return result;
|
||||
|
||||
if (!script_search)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user