Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 13be4e7

Browse filesBrowse files
committed
Don't use shell to call tar
1 parent 660adc6 commit 13be4e7
Copy full SHA for 13be4e7

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎setupext.py

Copy file name to clipboardExpand all lines: setupext.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ def do_custom_build(self):
10011001
cflags = 'CFLAGS="{0} -fPIC" '.format(os.environ.get('CFLAGS', ''))
10021002

10031003
subprocess.check_call(
1004-
['tar zxf {0}'.format(tarball)], shell=True, cwd='build')
1004+
['tar', 'zxf', tarball], cwd='build')
10051005
subprocess.check_call(
10061006
[cflags +
10071007
'./configure --without-zlib --without-bzip2 --without-png'],

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.