diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-20 11:56:05 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 08:10:02 +0100 |
commit | d022b4335100612d6596cc4c4956cb98ed5873cc (patch) | |
tree | 780b94cdc6243da09c06864537f251dec45a8287 /meta/recipes-core | |
parent | caebd862bac7eed725e0f0321bf50793671b5312 (diff) | |
download | openembedded-core-d022b4335100612d6596cc4c4956cb98ed5873cc.tar.gz openembedded-core-d022b4335100612d6596cc4c4956cb98ed5873cc.tar.bz2 openembedded-core-d022b4335100612d6596cc4c4956cb98ed5873cc.zip |
classes/lib: Update xrange -> range for python3
xrange() no longer exists in python 3, use range()
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/meta/uninative-tarball.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/meta/uninative-tarball.bb b/meta/recipes-core/meta/uninative-tarball.bb index a983e42c67..fb147a17f7 100644 --- a/meta/recipes-core/meta/uninative-tarball.bb +++ b/meta/recipes-core/meta/uninative-tarball.bb @@ -50,7 +50,7 @@ fakeroot tar_sdk() { DEST="./${SDK_ARCH}-${SDK_OS}" mv sysroots/${SDK_SYS} $DEST rm sysroots -rf - patchelf --set-interpreter ${@''.join('a' for n in xrange(1024))} $DEST/usr/bin/patchelf + patchelf --set-interpreter ${@''.join('a' for n in range(1024))} $DEST/usr/bin/patchelf mv $DEST/usr/bin/patchelf $DEST/usr/bin/patchelf-uninative tar ${SDKTAROPTS} -c -j --file=${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.tar.bz2 . } |