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)