From 99691de8709b502566a7891820d3cc3d71a3e28b Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Mon, 3 Aug 2009 01:04:18 +0000 Subject: [PATCH] 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 --- coregrind/m_debuginfo/readmacho.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.47.3