From c422a53af80e7bca88756a89618753c0159279a4 Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Sat, 30 Sep 2017 01:40:20 +0300 Subject: [PATCH] Fix openssl failing if .pl extension is not associated with a perl.exe --- PCbuild/build_ssl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PCbuild/build_ssl.py b/PCbuild/build_ssl.py index 7aee715..ae0f743 100644 --- a/PCbuild/build_ssl.py +++ b/PCbuild/build_ssl.py @@ -102,7 +102,7 @@ def fix_makefile(makefile): with open(makefile, 'w') as fout: for line in lines: if line.startswith("PERL="): - continue + line = "PERL=perl\n" if line.startswith("CP="): line = "CP=copy\n" if line.startswith("MKDIR="): -- 2.10.0.windows.1