summaryrefslogtreecommitdiffstats
path: root/PCbuild/prepare_ssl.py
diff options
context:
space:
mode:
Diffstat (limited to 'PCbuild/prepare_ssl.py')
-rw-r--r--PCbuild/prepare_ssl.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/PCbuild/prepare_ssl.py b/PCbuild/prepare_ssl.py
index 199c4ef..16d77d9 100644
--- a/PCbuild/prepare_ssl.py
+++ b/PCbuild/prepare_ssl.py
@@ -132,6 +132,9 @@ def fix_makefile(makefile):
if noalgo not in line:
line = line + noalgo
line = line + '\n'
+ if r'$(SRC_D)\util\copy-if-different.pl' in line:
+ line = line.replace(r'$(SRC_D)\util\copy-if-different.pl',
+ 'copy /Y')
fout.write(line)
def run_configure(configure, do_script):