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 291768c

Browse filesBrowse files
committed
fix subprocess call
1 parent 510a5a4 commit 291768c
Copy full SHA for 291768c

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

‎setup.py

Copy file name to clipboardExpand all lines: setup.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def main():
147147
if sys.platform.startswith('linux') and not x64:
148148
cmake_args.append("-DCMAKE_CXX_FLAGS=-U__STRICT_ANSI__")
149149
# patch openEXR when building on i386, see: https://github.com/openexr/openexr/issues/128
150-
subprocess.check_call(["patch", "-p0", "<", "patches/patchOpenEXR"])
150+
subprocess.check_call("patch -p0 < patches/patchOpenEXR", shell=True)
151151

152152

153153
if 'CMAKE_ARGS' in os.environ:

0 commit comments

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