[oe-commits] [openembedded-core] 31/60: busybox: make busybox.links.{suid, nosuid} reproducible

git at git.openembedded.org git at git.openembedded.org
Sat Nov 10 11:44:17 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 99250f80f025c3e8c85bb04607ad5ac96e5b0428
Author: Martin Hundebøll <martin at geanix.com>
AuthorDate: Thu Nov 8 13:07:27 2018 +0100

    busybox: make busybox.links.{suid, nosuid} reproducible
    
    The busybox.link.* files are generated from autoconf.h and applets.h,
    which are both auto-generated by the build system. The contents of the
    two files might be in different order, and so the link files are not
    reproducble as is.
    
    Fix this by sorting the lists using `sort`.
    
    Signed-off-by: Martin Hundebøll <martin at geanix.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-core/busybox/busybox.inc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc
index 10582a7..09433dd 100644
--- a/meta/recipes-core/busybox/busybox.inc
+++ b/meta/recipes-core/busybox/busybox.inc
@@ -184,7 +184,8 @@ do_compile() {
 			oe_runmake busybox_unstripped
 			mv busybox_unstripped busybox.$s
 			oe_runmake busybox.links
-			mv busybox.links busybox.links.$s
+			sort busybox.links > busybox.links.$s
+			rm busybox.links
 		done
 
 		# hard fail if sh is being linked to the suid busybox (detects bug 10346)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list