Skip to content

Commit

Permalink
ARROW-306: Add option to pass cmake arguments via environment variable
Browse files Browse the repository at this point in the history
Author: Uwe L. Korn <[email protected]>

Closes #149 from xhochy/arrow-306 and squashes the following commits:

11a3e66 [Uwe L. Korn] ARROW-306: Add option to pass cmake arguments via environment variable
  • Loading branch information
xhochy authored and wesm committed Sep 29, 2016
1 parent bd195e3 commit bf30235
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 bf30235

Please sign in to comment.