From 7f06081aeb2afb969f2195fc4509d348c21e6290 Mon Sep 17 00:00:00 2001 From: Bradley Sepos Date: Tue, 26 Feb 2019 16:19:48 -0500 Subject: [PATCH] make: Update python_launcher to accept Python 3. --- make/python_launcher | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/python_launcher b/make/python_launcher index 30fcf141e..212d8f75f 100755 --- a/make/python_launcher +++ b/make/python_launcher @@ -13,7 +13,7 @@ inpath() return 1 } -for p in python2.7 python2.6 python2.5 python2.4 python2 python +for p in python3 python2 python do if ( inpath $p ); then exec $p "$@" -- 2.40.0