From b09aef65ffa2ab78cbdee641c82c9e588de45eaf Mon Sep 17 00:00:00 2001 From: Ross Lagerwall Date: Mon, 9 May 2016 10:08:02 +0100 Subject: [PATCH] Update format of .xsplice.depends section .xsplice.depends is expected to contain an ELF note, not a plain binary checksum. --- xsplice-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xsplice-build b/xsplice-build index a67ebc0..35b9aae 100755 --- a/xsplice-build +++ b/xsplice-build @@ -140,7 +140,7 @@ function create_patch() # Create a dependency section > depends.bin if [ -n "$DEPENDS" ]; then - perl -e "print pack 'H*', '${DEPENDS}'" >> depends.bin + perl -e "print pack 'VVVZ*H*', 4, 20, 3, 'GNU', '${DEPENDS}'" >> depends.bin fi echo "Creating patch module..." -- 2.39.5