python-lxml: Update to 3.8.0

This commit is contained in:
Alexey Pavlov
2017-06-17 08:24:34 +03:00
parent 634d5de9f9
commit 583c3b12d5
2 changed files with 11 additions and 11 deletions

View File

@@ -1,11 +1,11 @@
--- lxml-3.3.1/setupinfo.py.orig 2014-02-11 21:11:57.898800000 +0400
+++ lxml-3.3.1/setupinfo.py 2014-02-11 21:41:20.905000000 +0400
@@ -263,7 +263,7 @@
--- lxml-3.8.0/setupinfo.py.orig 2017-06-16 21:11:57.898800000 +0400
+++ lxml-3.8.0/setupinfo.py 2017-06-16 21:41:20.905000000 +0400
@@ -324,7 +324,7 @@
if not cmd:
return ''
if args:
- cmd = ' '.join((cmd,) + args)
+ cmd = 'sh -c "'+' '.join((cmd,) + args)+'"'
try:
import subprocess
except ImportError:
import subprocess
p = subprocess.Popen(cmd, shell=True,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)