1 Signed-off-by: Sven Rebhan <odinshorse@googlemail.com>
3 Always try to prepend the sysroot prefix to absolute filenames first.
5 http://bugs.gentoo.org/275666
6 http://sourceware.org/bugzilla/show_bug.cgi?id=10340
12 if (! entry->flags.maybe_archive)
14 - if (entry->flags.sysrooted && IS_ABSOLUTE_PATH (entry->filename))
15 + /* For absolute pathnames, try to always open the file in the
16 + sysroot first. If this fails, try to open the file at the
18 + entry->flags.sysrooted = is_sysrooted_pathname (entry->filename);
19 + if (!entry->flags.sysrooted && IS_ABSOLUTE_PATH (entry->filename)
22 char *name = concat (ld_sysroot, entry->filename,
24 if (ldfile_try_open_bfd (name, entry))
26 entry->filename = name;
27 + entry->flags.sysrooted = TRUE;
32 - else if (ldfile_try_open_bfd (entry->filename, entry))
34 + if (ldfile_try_open_bfd (entry->filename, entry))
37 if (IS_ABSOLUTE_PATH (entry->filename))