From 65c03989cc73b49dd2f614402838f4609dc730bb Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Fri, 30 Sep 2011 13:57:13 +0000 Subject: [PATCH] Add a patch that fixes Chromium bug #98668 git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@296 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- patch/patches/build.patch | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/patch/patches/build.patch b/patch/patches/build.patch index 6e77f59b9..e73ddb02c 100644 --- a/patch/patches/build.patch +++ b/patch/patches/build.patch @@ -1,6 +1,6 @@ Index: common.gypi =================================================================== ---- common.gypi (revision 85124) +--- common.gypi (revision 102269) +++ common.gypi (working copy) @@ -9,6 +9,9 @@ # Variables expected to be overriden on the GYP command line (-D) or by @@ -12,3 +12,16 @@ Index: common.gypi # Putting a variables dict inside another variables dict looks kind of # weird. This is done so that 'host_arch', 'chromeos', etc are defined as # variables within the outer variables dict here. This is necessary +Index: mac/strip_save_dsym +=================================================================== +--- mac/strip_save_dsym (revision 102269) ++++ mac/strip_save_dsym (working copy) +@@ -48,7 +48,7 @@ + "bundle"] + macho_types_re = "Mach-O (?:64-bit )?(?:" + "|".join(macho_types) + ")" + +- file_cmd = subprocess.Popen(["/usr/bin/file", "-b", "--", macho], ++ file_cmd = subprocess.Popen(["/usr/bin/file", "-b", "-L", "--", macho], + stdout=subprocess.PIPE) + + archs = []