From: Stephano Cetola Date: Fri, 10 Mar 2017 15:15:52 +0000 (-0800) Subject: uninative: remove unneeded call to sparse copy X-Git-Tag: uninative-1.6~248 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a2519a2f96bfea53a527c704e620e3584c97c67d;p=openembedded-core.git uninative: remove unneeded call to sparse copy As of this commit: 39f5a05152aa0c3503735e18dd3b4c066b284107 patchelf no longer inflates file sizes. Since the files are no longer inflated by patchelf, we can skip using cp with the --sparse option. More details as to how patchelf has changed are available in that commit log. Signed-off-by: Stephano Cetola Signed-off-by: Richard Purdie --- diff --git a/meta/classes/uninative.bbclass b/meta/classes/uninative.bbclass index 0d1063a13c..ee4ab20c17 100644 --- a/meta/classes/uninative.bbclass +++ b/meta/classes/uninative.bbclass @@ -122,7 +122,4 @@ python uninative_changeinterp () { continue subprocess.check_output(("patchelf-uninative", "--set-interpreter", d.getVar("UNINATIVE_LOADER"), f), stderr=subprocess.STDOUT) - subprocess.check_output(("cp", "--sparse=always", f, f + ".sparse"), stderr=subprocess.STDOUT) - os.unlink(f) - os.rename(f + ".sparse", f) }