1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-11 13:03:46 -05:00

Moved this too soon, verify_python() expects bin/python to be created first

This commit is contained in:
Samuel Villamonte
2016-10-02 11:38:50 -05:00
parent 858b318779
commit 46bc0b7558
2 changed files with 3 additions and 3 deletions

View File

@@ -922,6 +922,9 @@ build_package_pyston() {
mkdir -p "${PREFIX_PATH}/"
cp -fR . "${PREFIX_PATH}/"
chmod +x "${PREFIX_PATH}/"pyston
# FIXME ugly hack below adapted from
# https://github.com/dropbox/pyston/blob/master/docker/pyston/Dockerfile
( cd "${PREFIX_PATH}/" && ./pyston virtualenv/virtualenv.py . )
}
build_package_ironpython() {