mirror of
https://git.yoctoproject.org/poky
synced 2026-04-25 06:32:12 +02:00
glibc-initial.inc: fix py3 SyntaxError in cfgscript print()
Update so this works with python3. (From OE-Core rev: 20190566db6d77ee0ccd799587db3dfa35e8029a) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
144c5175b8
commit
531c354e7e
@@ -11,7 +11,7 @@ TOOLCHAIN_OPTIONS = " --sysroot=${STAGING_DIR_TCBOOTSTRAP}"
|
||||
do_configure () {
|
||||
(cd ${S} && gnu-configize) || die "failure in running gnu-configize"
|
||||
find ${S} -name "configure" | xargs touch
|
||||
cfgscript=`python -c "import os; print os.path.relpath('${S}', '.')"`/configure
|
||||
cfgscript=`python -c "import os; print(os.path.relpath('${S}', '.'))"`/configure
|
||||
$cfgscript --host=${TARGET_SYS} --build=${BUILD_SYS} \
|
||||
--prefix=/usr \
|
||||
--without-cvs --disable-sanity-checks \
|
||||
|
||||
Reference in New Issue
Block a user