From c48cac8dc4228788dd2a07f391bfe44af4475ed8 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Tue, 30 Aug 2016 18:45:11 +0300 Subject: [PATCH] Mac: Fix dSYM path in make_distrib.py (issue #1403) --- tools/make_distrib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/make_distrib.py b/tools/make_distrib.py index 68f25d819..ddcd2880a 100644 --- a/tools/make_distrib.py +++ b/tools/make_distrib.py @@ -640,7 +640,7 @@ elif platform == 'macosx': # create the real dSYM file from the "fake" dSYM file sys.stdout.write("Creating the real dSYM file...\n") src_path = os.path.join(build_dir, \ - '%s.framework.dSYM/Contents/Resources/DWARF/%s' % (framework_name, framework_name)) + '%s.dSYM/Contents/Resources/DWARF/%s' % (framework_name, framework_name)) dst_path = os.path.join(symbol_output_dir, '%s.dSYM' % framework_name) run('dsymutil "%s" -o "%s"' % (src_path, dst_path), cef_dir)