nodejs/debian/patches/python3.patch

33 lines
902 B
Diff

Description: support build with python3
Forwarded: not-needed
Last-Update: 2020-08-08
Author: Jérémy Lal <kapouer@melix.org>
--- a/configure
+++ b/configure
@@ -4,7 +4,7 @@
# mix of single and double quotes is intentional, as is the fact that
# the ] goes on a new line.
_=[ '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" "$@"
exec python "$0" "$@"
''' "$0" "$@"
@@ -13,16 +13,5 @@
import sys
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