From: Ed Bartosh <[email protected]> As most of oe-test cases work for devtool and recipetool it makes sense to switch both tools to python 3 by explicitly referring to python3 in their shebangs.
Signed-off-by: Ed Bartosh <[email protected]> Signed-off-by: Richard Purdie <[email protected]> --- scripts/devtool | 2 +- scripts/oe-pkgdata-util | 2 +- scripts/recipetool | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/devtool b/scripts/devtool index 4dbb527..ff368dc 100755 --- a/scripts/devtool +++ b/scripts/devtool @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # OpenEmbedded Development tool # diff --git a/scripts/oe-pkgdata-util b/scripts/oe-pkgdata-util index a04e44d..b39d9b5 100755 --- a/scripts/oe-pkgdata-util +++ b/scripts/oe-pkgdata-util @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # OpenEmbedded pkgdata utility # diff --git a/scripts/recipetool b/scripts/recipetool index 6c66487..0e8bffb 100755 --- a/scripts/recipetool +++ b/scripts/recipetool @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Recipe creation tool # -- 2.5.0 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
