Linux: Fix copying of libcef.so in make_distrib.py (issue #1403)

This commit is contained in:
Marshall Greenblatt 2016-08-25 16:20:47 +03:00
parent 1dac96f3e2
commit 67bb846748
1 changed files with 13 additions and 4 deletions

View File

@ -717,6 +717,9 @@ elif platform == 'linux':
if mode == 'standard':
# transfer Debug files
build_dir = build_dir_debug
if use_gn:
libcef_path = os.path.join(build_dir, 'libcef.so')
else:
libcef_path = os.path.join(build_dir, lib_dir_name, 'libcef.so')
if not options.allowpartial or path_exists(libcef_path):
valid_build_dir = build_dir
@ -731,6 +734,9 @@ elif platform == 'linux':
# transfer Release files
build_dir = build_dir_release
if use_gn:
libcef_path = os.path.join(build_dir, 'libcef.so')
else:
libcef_path = os.path.join(build_dir, lib_dir_name, 'libcef.so')
if not options.allowpartial or path_exists(libcef_path):
valid_build_dir = build_dir
@ -738,6 +744,9 @@ elif platform == 'linux':
make_dir(dst_dir, options.quiet)
if mode == 'client':
if use_gn:
lib_dst_dir = dst_dir
else:
lib_dst_dir = os.path.join(dst_dir, lib_dir_name)
make_dir(lib_dst_dir, options.quiet)
copy_file(libcef_path, lib_dst_dir, options.quiet)