Skip to content

Commit

Permalink
fix subprocess call
Browse files Browse the repository at this point in the history
  • Loading branch information
skvark committed Sep 11, 2019
1 parent c36d98e commit 45a77d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def main():
if sys.platform.startswith('linux') and not x64:
cmake_args.append("-DCMAKE_CXX_FLAGS=-U__STRICT_ANSI__")
# patch openEXR when building on i386, see: https://github.com/openexr/openexr/issues/128
subprocess.check_call(["patch", "-p0", "<", "patches/patchOpenEXR"])
subprocess.check_call("patch -p0 < patches/patchOpenEXR", shell=True)


if 'CMAKE_ARGS' in os.environ:
Expand Down

0 comments on commit 45a77d6

Please sign in to comment.