Repository: arrow Updated Branches: refs/heads/master bd195e304 -> bf30235fa
ARROW-306: Add option to pass cmake arguments via environment variable 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 Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/bf30235f Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/bf30235f Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/bf30235f Branch: refs/heads/master Commit: bf30235fa3672936013db82ed9dd8949433d802e Parents: bd195e3 Author: Uwe L. Korn <[email protected]> Authored: Wed Sep 28 21:44:37 2016 -0400 Committer: Wes McKinney <[email protected]> Committed: Wed Sep 28 21:44:37 2016 -0400 ---------------------------------------------------------------------- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/bf30235f/python/setup.py ---------------------------------------------------------------------- diff --git a/python/setup.py b/python/setup.py index a5db2b0..d1be122 100644 --- a/python/setup.py +++ b/python/setup.py @@ -95,7 +95,7 @@ class build_ext(_build_ext): 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',
