|
From: <sv...@va...> - 2009-08-03 01:04:33
|
Author: sewardj
Date: 2009-08-03 02:04:18 +0100 (Mon, 03 Aug 2009)
New Revision: 10692
Log:
Add /Applications to the list of directories in which not to try to auto-run dsymutil.
Modified:
trunk/coregrind/m_debuginfo/readmacho.c
Modified: trunk/coregrind/m_debuginfo/readmacho.c
===================================================================
--- trunk/coregrind/m_debuginfo/readmacho.c 2009-08-03 00:23:16 UTC (rev 10691)
+++ trunk/coregrind/m_debuginfo/readmacho.c 2009-08-03 01:04:18 UTC (rev 10692)
@@ -654,7 +654,8 @@
|| 0 == VG_(strncasecmp)(name, "/opt/", 5)
|| 0 == VG_(strncasecmp)(name, "/sw/", 4)
|| 0 == VG_(strncasecmp)(name, "/System/", 8)
- || 0 == VG_(strncasecmp)(name, "/Library/", 9)) {
+ || 0 == VG_(strncasecmp)(name, "/Library/", 9)
+ || 0 == VG_(strncasecmp)(name, "/Applications/", 14)) {
return True;
} else {
return False;
|