about summary refs log tree commit diff
path: root/elf
diff options
context:
space:
mode:
Diffstat (limited to 'elf')
-rw-r--r--elf/ldconfig.c18
1 files changed, 12 insertions, 6 deletions
diff --git a/elf/ldconfig.c b/elf/ldconfig.c
index 99fe8a93d2..50b6a261f9 100644
--- a/elf/ldconfig.c
+++ b/elf/ldconfig.c
@@ -558,12 +558,18 @@ search_dir (const struct dir_entry *entry)
 		 entry->path, direntry->d_name);
 	  continue;
 	}
-      if (lstat (buf, &stat_buf))
-	{
-	  error (0, errno, _("Can't lstat %s"), buf);
-	  continue;
-	}
-      else if (S_ISDIR (stat_buf.st_mode) && is_hwcap (direntry->d_name))
+#ifdef _DIRENT_HAVE_D_TYPE
+      if (direntry->d_type != DT_UNKNOWN)
+	stat_buf.st_mode = DTTOIF (direntry->d_type);
+      else
+#endif
+	if (lstat (buf, &stat_buf))
+	  {
+	    error (0, errno, _("Can't lstat %s"), buf);
+	    continue;
+	  }
+
+      if (S_ISDIR (stat_buf.st_mode) && is_hwcap (direntry->d_name))
 	{
 	  /* Handle subdirectory also, make a recursive call.  */
 	  struct dir_entry new_entry;