(main): When searching compiler directories, look for ld_suffix, not

full_ld_suffix.

From-SVN: r6280
This commit is contained in:
Richard Kenner 1993-12-23 08:17:07 -05:00
parent de9253a04d
commit b3a2ef9465
1 changed files with 3 additions and 1 deletions

View File

@ -958,8 +958,10 @@ main (argc, argv)
if (ld_file_name == 0)
ld_file_name = find_a_file (&path, REAL_LD_FILE_NAME);
#endif
/* Search the compiler directories for `ld'. We have protection against
recursive calls in find_a_file. */
if (ld_file_name == 0)
ld_file_name = find_a_file (&cpath, full_ld_suffix);
ld_file_name = find_a_file (&cpath, ld_suffix);
/* Search the ordinary system bin directories
for `ld' (if native linking) or `TARGET-ld' (if cross). */
if (ld_file_name == 0)