support build with python3

Forwarded: not-needed
Last-Update: 2020-08-08

Gbp-Pq: Name python3.patch
This commit is contained in:
Jérémy Lal 2022-08-16 11:14:24 +08:00 committed by Lu zhiping
parent 9e0fde6c9c
commit 757c1c8fc4
1 changed files with 1 additions and 12 deletions

13
configure vendored
View File

@ -4,7 +4,7 @@
# mix of single and double quotes is intentional, as is the fact that # mix of single and double quotes is intentional, as is the fact that
# the ] goes on a new line. # the ] goes on a new line.
_=[ 'exec' '/bin/sh' '-c' ''' _=[ 'exec' '/bin/sh' '-c' '''
which python2.7 >/dev/null && exec python2.7 "$0" "$@" which python3 >/dev/null && exec python3 "$0" "$@"
which python2 >/dev/null && exec python2 "$0" "$@" which python2 >/dev/null && exec python2 "$0" "$@"
exec python "$0" "$@" exec python "$0" "$@"
''' "$0" "$@" ''' "$0" "$@"
@ -13,16 +13,5 @@ del _
import sys import sys
from distutils.spawn import find_executable as which from distutils.spawn import find_executable as which
if sys.version_info[:2] != (2, 7):
sys.stderr.write('Please use Python 2.7')
python2 = which('python2') or which('python2.7')
if python2:
sys.stderr.write(':\n\n')
sys.stderr.write(' ' + python2 + ' ' + ' '.join(sys.argv))
sys.stderr.write('\n')
sys.exit(1)
import configure import configure