From 6984070b3a742e9bccd65f9e2e2d447c3eecfe84 Mon Sep 17 00:00:00 2001 From: Dan Liew Date: Wed, 25 Nov 2015 11:28:51 +0000 Subject: [PATCH] Fix typo (missing argument) that I missed that didn't fire because I did not test on Windows. --- scripts/mk_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mk_util.py b/scripts/mk_util.py index 8b75761fe..5563c29a3 100644 --- a/scripts/mk_util.py +++ b/scripts/mk_util.py @@ -1242,7 +1242,7 @@ class DLLComponent(Component): MakeRuleCmd.install_files(out, dllfile, dllInstallPath) pythonPkgDirWithoutPrefix = strip_path_prefix(PYTHON_PACKAGE_DIR, PREFIX) if IS_WINDOWS: - MakeRuleCmd.install_files(dllfile, os.path.join(pythonPkgDirWithoutPrefix, dllfile)) + MakeRuleCmd.install_files(out, dllfile, os.path.join(pythonPkgDirWithoutPrefix, dllfile)) else: # Create symbolic link to save space. # Compute the relative path from the python package directory