diff options
author | Ryo ONODERA <[email protected]> | 2019-05-03 21:31:50 +0900 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2019-06-18 10:40:27 -0400 |
commit | f1f175ba154c3837b6fb1fa1a90307ac346c34f9 (patch) | |
tree | 25783f1570235e57d73695f5a9d61a217598e562 /make | |
parent | 84707dbafd5f6fbf9a37d54a03424a741116147e (diff) |
configure: More verbose selection of python interpreters.
python3.7, python3.6 and python2.7 are common under NetBSD.
Diffstat (limited to 'make')
-rwxr-xr-x | make/python_launcher | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/python_launcher b/make/python_launcher index 212d8f75f..24b35a7ad 100755 --- a/make/python_launcher +++ b/make/python_launcher @@ -13,7 +13,7 @@ inpath() return 1 } -for p in python3 python2 python +for p in python3 python2 python python3.7 python3.6 python2.7 do if ( inpath $p ); then exec $p "$@" |