diff options
author | Stephano Cetola <stephano.cetola@linux.intel.com> | 2017-03-10 07:15:52 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-11 16:09:14 +0000 |
commit | e018993541796f369faf64c65e18d53392ac4490 (patch) | |
tree | d31075c3bebaf204eb89fa325ae3b4d16c8de7ce | |
parent | 828fc447e5942532b17390f9d79a04772c4dd223 (diff) | |
download | poky-e018993541796f369faf64c65e18d53392ac4490.tar.gz |
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.
(From OE-Core rev: a2519a2f96bfea53a527c704e620e3584c97c67d)
Signed-off-by: Stephano Cetola <stephano.cetola@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/uninative.bbclass | 3 |
1 files changed, 0 insertions, 3 deletions
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 () { | |||
122 | continue | 122 | continue |
123 | 123 | ||
124 | subprocess.check_output(("patchelf-uninative", "--set-interpreter", d.getVar("UNINATIVE_LOADER"), f), stderr=subprocess.STDOUT) | 124 | subprocess.check_output(("patchelf-uninative", "--set-interpreter", d.getVar("UNINATIVE_LOADER"), f), stderr=subprocess.STDOUT) |
125 | subprocess.check_output(("cp", "--sparse=always", f, f + ".sparse"), stderr=subprocess.STDOUT) | ||
126 | os.unlink(f) | ||
127 | os.rename(f + ".sparse", f) | ||
128 | } | 125 | } |