configure.in: Use Python 3.

This commit is contained in:
Vincent Povirk 2019-08-13 15:28:13 -05:00 committed by Jacek Caban
parent 22c4cbae1a
commit 1540a2fec9

View File

@ -21,4 +21,4 @@ SRCDIR=$(dirname $0)
TOPSRCDIR="$SRCDIR"
export OLD_CONFIGURE="$SRCDIR"/old-configure
which python2.7 > /dev/null && exec python2.7 "$TOPSRCDIR/configure.py" "$@" || exec python "$TOPSRCDIR/configure.py" "$@"
which python3 > /dev/null && exec python3 "$TOPSRCDIR/configure.py" "$@" || exec python "$TOPSRCDIR/configure.py" "$@"