From 0e940c412883eda4057ec48d83dc465f5adf2549 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Wed, 20 Jul 2016 14:26:02 -0400 Subject: [PATCH] Windows: Fix widevine copy step for binary distribution (issue #1948) --- 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 bada1ea8c..e757dc835 100644 --- a/tools/make_distrib.py +++ b/tools/make_distrib.py @@ -560,7 +560,7 @@ if platform == 'windows': make_dir(dst_dir, options.quiet) copy_files(os.path.join(script_dir, 'distrib/win/*.dll'), dst_dir, options.quiet) for binary in binaries: - copy_file(os.path.join(build_dir, binary), os.path.join(dst_dir, binary), options.quiet) + copy_file(os.path.join(build_dir, binary), os.path.join(dst_dir, os.path.basename(binary)), options.quiet) if mode != 'client': copy_file(os.path.join(build_dir, libcef_dll_file), os.path.join(dst_dir, 'libcef.lib'), \