diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2016-09-26 16:34:49 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-28 10:16:03 +0100 |
commit | 72dc833d992f8bb6480d43be3efa13f0e575a014 (patch) | |
tree | aeba642b34949a648dd16e8003e088cd453b22c9 /meta/recipes-core | |
parent | 7ff051c2fb9b8c7afd4faff2eeba6a22aadb699a (diff) | |
download | poky-72dc833d992f8bb6480d43be3efa13f0e575a014.tar.gz |
glibc-initial: use python3 instead of python (v2)
(From OE-Core rev: 6946a19fdc8853fbb02fd531b76d9d6d9a3febc3)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/glibc/glibc-initial.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/glibc/glibc-initial.inc b/meta/recipes-core/glibc/glibc-initial.inc index 0c8bd649d5..ec21f105d0 100644 --- a/meta/recipes-core/glibc/glibc-initial.inc +++ b/meta/recipes-core/glibc/glibc-initial.inc | |||
@@ -11,7 +11,7 @@ TOOLCHAIN_OPTIONS = " --sysroot=${STAGING_DIR_TCBOOTSTRAP}" | |||
11 | do_configure () { | 11 | do_configure () { |
12 | (cd ${S} && gnu-configize) || die "failure in running gnu-configize" | 12 | (cd ${S} && gnu-configize) || die "failure in running gnu-configize" |
13 | find ${S} -name "configure" | xargs touch | 13 | find ${S} -name "configure" | xargs touch |
14 | cfgscript=`python -c "import os; print(os.path.relpath('${S}', '.'))"`/configure | 14 | cfgscript=`python3 -c "import os; print(os.path.relpath('${S}', '.'))"`/configure |
15 | $cfgscript --host=${TARGET_SYS} --build=${BUILD_SYS} \ | 15 | $cfgscript --host=${TARGET_SYS} --build=${BUILD_SYS} \ |
16 | --prefix=/usr \ | 16 | --prefix=/usr \ |
17 | --without-cvs --disable-sanity-checks \ | 17 | --without-cvs --disable-sanity-checks \ |