2020-01-21 19:09:13 +00:00
|
|
|
diff --git a/bfd/plugin.c b/bfd/plugin.c
|
|
|
|
index 537ab60311..bfe7957f96 100644
|
|
|
|
--- a/bfd/plugin.c
|
|
|
|
+++ b/bfd/plugin.c
|
|
|
|
@@ -386,6 +386,7 @@ load_plugin (bfd *abfd)
|
2017-01-30 13:08:54 +00:00
|
|
|
if (plugin_program_name == NULL)
|
|
|
|
return found;
|
|
|
|
|
|
|
|
+#if 0
|
2020-01-21 19:09:13 +00:00
|
|
|
/* Try not to search the same dir twice, by looking at st_dev and
|
|
|
|
st_ino for the dir. If we are on a file system that always sets
|
|
|
|
st_ino to zero or the actual st_ino is zero we might waste some
|
|
|
|
@@ -437,7 +438,7 @@ load_plugin (bfd *abfd)
|
|
|
|
if (found)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
-
|
2017-01-30 13:08:54 +00:00
|
|
|
+#endif
|
|
|
|
return found;
|
|
|
|
}
|
2020-01-21 19:09:13 +00:00
|
|
|
|