|
From: <sv...@va...> - 2009-05-31 08:31:10
|
Author: sewardj
Date: 2009-05-31 09:31:06 +0100 (Sun, 31 May 2009)
New Revision: 10173
Log:
is_systemish_library_name: add "/opt" and "/sw" to the list of places
where we shouldn't auto-run dsymutil. (Luc Bourhis).
Modified:
trunk/coregrind/m_debuginfo/readmacho.c
Modified: trunk/coregrind/m_debuginfo/readmacho.c
===================================================================
--- trunk/coregrind/m_debuginfo/readmacho.c 2009-05-31 07:03:05 UTC (rev 10172)
+++ trunk/coregrind/m_debuginfo/readmacho.c 2009-05-31 08:31:06 UTC (rev 10173)
@@ -649,6 +649,8 @@
if (0 == VG_(strncasecmp)(name, "/usr/", 5)
|| 0 == VG_(strncasecmp)(name, "/bin/", 5)
|| 0 == VG_(strncasecmp)(name, "/sbin/", 6)
+ || 0 == VG_(strncasecmp)(name, "/opt/", 5)
+ || 0 == VG_(strncasecmp)(name, "/sw/", 4
|| 0 == VG_(strncasecmp)(name, "/System/", 8)
|| 0 == VG_(strncasecmp)(name, "/Library/", 9)) {
return True;
|