From a09f8e32044c8daec2d2fb3ff0e830c21402df6e Mon Sep 17 00:00:00 2001 From: Rasmus Villemoes Date: Tue, 21 Aug 2018 12:01:45 +0200 Subject: lib/oe/package.py: use bb.utils.break_hardlinks helper This does the same thing, but is more efficient in case st_nlinks is (already) 1. Depends on bitbake commit 7ae93cf40ab91965147055100432961436bce46c . Signed-off-by: Rasmus Villemoes Signed-off-by: Richard Purdie --- meta/lib/oe/package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/lib') diff --git a/meta/lib/oe/package.py b/meta/lib/oe/package.py index 21c80aaa38..efd36b3758 100644 --- a/meta/lib/oe/package.py +++ b/meta/lib/oe/package.py @@ -159,7 +159,7 @@ def strip_execs(pn, dstdir, strip_cmd, libdir, base_libdir, d, qa_already_stripp else: # break hardlinks so that we do not strip the original. inodes[inodecache[file]] = file - bb.utils.copyfile(file, file) + bb.utils.break_hardlinks(file) elffiles[file] = elf_file # -- cgit 1.2.3-korg