From: Martin v. Löwis Date: Fri, 18 May 2012 12:17:43 +0000 (+0200) Subject: Add another set of quotes to make cmd.exe happy. X-Git-Tag: v3.3.0a4~136^2^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e9dfb0f8229e6477f2d22753252dfb78fd3e25d3;p=thirdparty%2FPython%2Fcpython.git Add another set of quotes to make cmd.exe happy. --- diff --git a/PCbuild/build_ssl.py b/PCbuild/build_ssl.py index 938812494a4e..04ad77bf44b2 100644 --- a/PCbuild/build_ssl.py +++ b/PCbuild/build_ssl.py @@ -46,7 +46,7 @@ def find_all_on_path(filename, extras = None): # is available. def find_working_perl(perls): for perl in perls: - fh = os.popen('"%s" -e "use Win32;"' % perl) + fh = os.popen('""%s" -e "use Win32;""' % perl) fh.read() rc = fh.close() if rc: