|
Lines 321-332
Link Here
|
| 321 |
} |
321 |
} |
| 322 |
|
322 |
|
| 323 |
eselect_python_update() { |
323 |
eselect_python_update() { |
| 324 |
if [[ -z "$(eselect python show)" || ! -f "${EROOT}usr/bin/$(eselect python show)" ]]; then |
324 |
eselect python update --if-unset --python2 |
| 325 |
eselect python update |
325 |
eselect python update --if-unset |
| 326 |
fi |
|
|
| 327 |
|
326 |
|
| 328 |
if [[ -z "$(eselect python show --python${PV%%.*})" || ! -f "${EROOT}usr/bin/$(eselect python show --python${PV%%.*})" ]]; then |
327 |
if [[ -n ${ESELECT_PYTHON_UPDATE_FORCE} ]]; then |
| 329 |
eselect python update --python${PV%%.*} |
328 |
eselect python update --python2 |
| 330 |
fi |
329 |
fi |
| 331 |
} |
330 |
} |
| 332 |
|
331 |
|