<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Signed-off-by: Sven Rebhan &lt;odinshorse@googlemail.com&gt;

Always try to prepend the sysroot prefix to absolute filenames first.

http://bugs.gentoo.org/275666
http://sourceware.org/bugzilla/show_bug.cgi?id=10340

--- a/ld/ldfile.c
+++ b/ld/ldfile.c
@@ -308,18 +308,25 @@
      directory first.  */
   if (! entry-&gt;flags.maybe_archive)
     {
-      if (entry-&gt;flags.sysrooted &amp;&amp; IS_ABSOLUTE_PATH (entry-&gt;filename))
+      /* For absolute pathnames, try to always open the file in the
+	 sysroot first. If this fails, try to open the file at the
+	 given location.  */
+      entry-&gt;flags.sysrooted = is_sysrooted_pathname (entry-&gt;filename);
+      if (!entry-&gt;flags.sysrooted &amp;&amp; IS_ABSOLUTE_PATH (entry-&gt;filename)
+	  &amp;&amp; ld_sysroot)
 	{
 	  char *name = concat (ld_sysroot, entry-&gt;filename,
 			       (const char *) NULL);
 	  if (ldfile_try_open_bfd (name, entry))
 	    {
 	      entry-&gt;filename = name;
+	      entry-&gt;flags.sysrooted = TRUE;
 	      return TRUE;
 	    }
 	  free (name);
 	}
-      else if (ldfile_try_open_bfd (entry-&gt;filename, entry))
+
+      if (ldfile_try_open_bfd (entry-&gt;filename, entry))
 	return TRUE;
 
       if (IS_ABSOLUTE_PATH (entry-&gt;filename))
</pre></body></html>