]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Add /Applications to the list of directories in which not to try to auto-run dsymutil.
authorJulian Seward <jseward@acm.org>
Mon, 3 Aug 2009 01:04:18 +0000 (01:04 +0000)
committerJulian Seward <jseward@acm.org>
Mon, 3 Aug 2009 01:04:18 +0000 (01:04 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10692

coregrind/m_debuginfo/readmacho.c

index 381384a72c67f2f56897490d7b664790151a24f6..4909cac351f8d7d4a58df21ea25bf1fd17de8ffe 100644 (file)
@@ -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;