diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2016-09-26 16:34:48 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-28 10:16:02 +0100 |
commit | 7ff051c2fb9b8c7afd4faff2eeba6a22aadb699a (patch) | |
tree | e9da5ca272c1e059cfeb1735eaaee5385c204435 /meta/classes/autotools.bbclass | |
parent | 8b5a62ee26da768445dbf39de1fee0f42bb1d40f (diff) | |
download | poky-7ff051c2fb9b8c7afd4faff2eeba6a22aadb699a.tar.gz |
autotools.bbclass: use python3 instead of python (v2)
(From OE-Core rev: 97b21645fdcdb39a58546b5f4d763b920fe5fbd6)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r-- | meta/classes/autotools.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index e5f527ec07..ecbba9f603 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass | |||
@@ -85,7 +85,7 @@ AUTOTOOLS_AUXDIR ?= "${AUTOTOOLS_SCRIPT_PATH}" | |||
85 | oe_runconf () { | 85 | oe_runconf () { |
86 | # Use relative path to avoid buildpaths in files | 86 | # Use relative path to avoid buildpaths in files |
87 | cfgscript_name="`basename ${CONFIGURE_SCRIPT}`" | 87 | cfgscript_name="`basename ${CONFIGURE_SCRIPT}`" |
88 | cfgscript=`python -c "import os; print(os.path.relpath(os.path.dirname('${CONFIGURE_SCRIPT}'), '.'))"`/$cfgscript_name | 88 | cfgscript=`python3 -c "import os; print(os.path.relpath(os.path.dirname('${CONFIGURE_SCRIPT}'), '.'))"`/$cfgscript_name |
89 | if [ -x "$cfgscript" ] ; then | 89 | if [ -x "$cfgscript" ] ; then |
90 | bbnote "Running $cfgscript ${CONFIGUREOPTS} ${EXTRA_OECONF} $@" | 90 | bbnote "Running $cfgscript ${CONFIGUREOPTS} ${EXTRA_OECONF} $@" |
91 | if ! ${CACHED_CONFIGUREVARS} $cfgscript ${CONFIGUREOPTS} ${EXTRA_OECONF} "$@"; then | 91 | if ! ${CACHED_CONFIGUREVARS} $cfgscript ${CONFIGUREOPTS} ${EXTRA_OECONF} "$@"; then |