Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 868327
Collapse All | Expand All

(-)a/configure (-14 / +2 lines)
Lines 14-33 inpath() Link Here
14
}
14
}
15
15
16
if ( inpath bash ); then
16
if ( inpath bash ); then
17
    pp=""
17
    exec python `dirname $0`/make/configure.py "$@"
18
    for p in python3 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python2 python2.7 python
18
    exit 0
19
    do
20
        if ( inpath $p ); then
21
            pp="$p"
22
            break
23
        fi
24
    done
25
    if [ "$pp" != "" ]; then
26
        exec $pp `dirname $0`/make/configure.py "$@"
27
        exit 0
28
    else
29
        echo "ERROR: no suitable version of python found."
30
    fi
31
else
19
else
32
    echo "ERROR: bash shell not found."
20
    echo "ERROR: bash shell not found."
33
fi
21
fi

Return to bug 868327