blob: a6ddaf1ec8dd269767a5f97fecc095a546baf9a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-make-python_launcher,v 1.1 2022/08/01 15:00:13 ast Exp $
Launch correct correct python
--- make/python_launcher.orig 2022-08-01 14:38:04.652928969 +0200
+++ make/python_launcher 2022-08-01 14:38:24.938211784 +0200
@@ -13,7 +13,7 @@
return 1
}
-for p in python3 python2 python python3.7 python3.6 python2.7
+for p in python3 python3.10 python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python2 python2.7 python
do
if ( inpath $p ); then
exec $p "$@"
|