From: Julian Seward Date: Mon, 3 Aug 2009 01:04:18 +0000 (+0000) Subject: Add /Applications to the list of directories in which not to try to auto-run dsymutil. X-Git-Tag: svn/VALGRIND_3_5_0~158 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99691de8709b502566a7891820d3cc3d71a3e28b;p=thirdparty%2Fvalgrind.git Add /Applications to the list of directories in which not to try to auto-run dsymutil. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10692 --- diff --git a/coregrind/m_debuginfo/readmacho.c b/coregrind/m_debuginfo/readmacho.c index 381384a72c..4909cac351 100644 --- a/coregrind/m_debuginfo/readmacho.c +++ b/coregrind/m_debuginfo/readmacho.c @@ -654,7 +654,8 @@ static Bool is_systemish_library_name ( UChar* name ) || 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;