Skip to content

Commit f1f175b

Browse files
ryoonbradleysepos
authored andcommitted
configure: More verbose selection of python interpreters.
python3.7, python3.6 and python2.7 are common under NetBSD.
1 parent 84707db commit f1f175b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ inpath()
1515

1616
if ( inpath bash ); then
1717
pp=""
18-
for p in python3 python2 python
18+
for p in python3 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python2 python2.7 python
1919
do
2020
if ( inpath $p ); then
2121
pp="$p"

make/python_launcher

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ inpath()
1313
return 1
1414
}
1515

16-
for p in python3 python2 python
16+
for p in python3 python2 python python3.7 python3.6 python2.7
1717
do
1818
if ( inpath $p ); then
1919
exec $p "$@"

0 commit comments

Comments
 (0)