Merge branch 'fix-docutils-build' into 'master'

Let pip unpack packages in the build directory

This change is meant to fix intermittent broken builds on Centos 7.

Depending on your system, if you leave out the `--build DIR` argument to
`pip install`, you may end up with pip trying to unpack packages in
`/tmp/something`. Then on the next build, things may break, because the
stuff in `/tmp` did not get cleaned up.

See merge request !324
This commit is contained in:
Marin Jankovski 2015-04-16 09:27:39 +00:00
commit a0e240c969
1 changed files with 1 additions and 1 deletions

View File

@ -25,5 +25,5 @@ dependency "python"
build do
env = with_standard_compiler_flags(with_embedded_path)
command "#{install_dir}/embedded/bin/pip install docutils==#{version}", env: env
command "#{install_dir}/embedded/bin/pip install --build . docutils==#{version}", env: env
end