Skip to content

Commit

Permalink
Add option to pass cmake arguments via environment variable
Browse files Browse the repository at this point in the history
Change-Id: Ib5addb2fae925bd755bc0441071aacbcba240ff0
  • Loading branch information
xhochy committed Sep 27, 2016
1 parent 45d8832 commit e9da3fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def run(self):

def initialize_options(self):
_build_ext.initialize_options(self)
self.extra_cmake_args = ''
self.extra_cmake_args = os.environ.get('PYARROW_CMAKE_OPTIONS', '')

CYTHON_MODULE_NAMES = [
'array',
Expand Down

0 comments on commit e9da3fa

Please sign in to comment.