Repository: arrow Updated Branches: refs/heads/master c48f6493f -> d7a2a1e18
ARROW-958: [Python] Fix conda source build instructions Author: Wes McKinney <wes.mckin...@twosigma.com> Closes #653 from wesm/ARROW-958 and squashes the following commits: 88c3c1d [Wes McKinney] Fix conda build instructions Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/d7a2a1e1 Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/d7a2a1e1 Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/d7a2a1e1 Branch: refs/heads/master Commit: d7a2a1e18457acb8a18cfcb7fbb3c3ba41543d4a Parents: c48f649 Author: Wes McKinney <wes.mckin...@twosigma.com> Authored: Sun May 7 17:48:18 2017 +0200 Committer: Uwe L. Korn <uw...@xhochy.com> Committed: Sun May 7 17:48:18 2017 +0200 ---------------------------------------------------------------------- python/doc/source/development.rst | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/d7a2a1e1/python/doc/source/development.rst ---------------------------------------------------------------------- diff --git a/python/doc/source/development.rst b/python/doc/source/development.rst index 01add11..440c1c4 100644 --- a/python/doc/source/development.rst +++ b/python/doc/source/development.rst @@ -93,8 +93,11 @@ about our build toolchain: .. code-block:: shell export ARROW_BUILD_TYPE=release + export ARROW_BUILD_TOOLCHAIN=$CONDA_PREFIX export PARQUET_BUILD_TOOLCHAIN=$CONDA_PREFIX + export ARROW_HOME=$CONDA_PREFIX + export PARQUET_HOME=$CONDA_PREFIX Now build and install the Arrow C++ libraries: @@ -104,7 +107,7 @@ Now build and install the Arrow C++ libraries: pushd arrow/cpp/build cmake -DCMAKE_BUILD_TYPE=$ARROW_BUILD_TYPE \ - -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX \ + -DCMAKE_INSTALL_PREFIX=$ARROW_HOME \ -DARROW_PYTHON=on \ -DARROW_BUILD_TESTS=OFF \ .. @@ -121,7 +124,7 @@ toolchain: pushd parquet-cpp/build cmake -DCMAKE_BUILD_TYPE=$ARROW_BUILD_TYPE \ - -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX \ + -DCMAKE_INSTALL_PREFIX=$PARQUET_HOME \ -DPARQUET_BUILD_BENCHMARKS=off \ -DPARQUET_BUILD_EXECUTABLES=off \ -DPARQUET_ZLIB_VENDORED=off \