mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-23 00:00:49 +00:00
Fix wrong variable reference
This commit is contained in:
parent
adc0365923
commit
269a702321
1 changed files with 2 additions and 2 deletions
|
@ -987,7 +987,7 @@ build_package_pypy() {
|
||||||
mkdir -p "${PREFIX_PATH}/bin" "${PREFIX_PATH}/lib"
|
mkdir -p "${PREFIX_PATH}/bin" "${PREFIX_PATH}/lib"
|
||||||
local pypy libpypy python
|
local pypy libpypy python
|
||||||
shopt -s nullglob
|
shopt -s nullglob
|
||||||
for bin in "bin/pypy"*; do
|
for bin in "bin/"*; do
|
||||||
case "${bin##*/}" in
|
case "${bin##*/}" in
|
||||||
"libpypy"* )
|
"libpypy"* )
|
||||||
( cd "${PREFIX_PATH}/lib" && ln -fs "../bin/${bin##*/}" "${bin##*/}" )
|
( cd "${PREFIX_PATH}/lib" && ln -fs "../bin/${bin##*/}" "${bin##*/}" )
|
||||||
|
@ -997,7 +997,7 @@ build_package_pypy() {
|
||||||
( cd "${PREFIX_PATH}/bin" && ln -fs "${bin##*/}" "${python##*/}" )
|
( cd "${PREFIX_PATH}/bin" && ln -fs "${bin##*/}" "${python##*/}" )
|
||||||
;;
|
;;
|
||||||
"pypy"* )
|
"pypy"* )
|
||||||
python="$(basename "${pypy}" | sed -e 's/pypy/python/')"
|
python="$(basename "${bin}" | sed -e 's/pypy/python/')"
|
||||||
( cd "${PREFIX_PATH}/bin" && ln -fs "${bin##*/}" "${python##*/}" )
|
( cd "${PREFIX_PATH}/bin" && ln -fs "${bin##*/}" "${python##*/}" )
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue