[SCM] debian-live/live-helper branch, master, updated. 1.0_a43-1-15-gfe152b4

Chris Lamb chris at chris-lamb.co.uk
Wed Apr 16 06:53:40 UTC 2008


The following commit has been merged in the master branch:
commit 24200e1a2c8122db1f423898fea6625487f08ae4
Author: Chris Lamb <chris at chris-lamb.co.uk>
Date:   Wed Apr 16 00:54:08 2008 +0100

    Use "find -path" for matching "path/to/file" files (Closes: #476206)
    
    This means that /isolinux/isolinux.bin and /boot/grub/stage2_eltorito are
    not included in md5sum files anymore as intended. It also prevents a
    strange and verbose warning from appearing in build logs.
    
    Signed-off-by: Chris Lamb <chris at chris-lamb.co.uk>

diff --git a/helpers/lh_binary_md5sum b/helpers/lh_binary_md5sum
index edc636e..14ecaa3 100755
--- a/helpers/lh_binary_md5sum
+++ b/helpers/lh_binary_md5sum
@@ -55,7 +55,7 @@ fi
 
 # Calculating md5sums
 cd binary
-find . -type f \! -name 'isolinux/isolinux.bin' \! -name 'boot/grub/stage2_eltorito' -print0 | sort -z | xargs -0 md5sum > ../md5sum.txt
+find . -type f \! -path './isolinux/isolinux.bin' \! -path './boot/grub/stage2_eltorito' -print0 | sort -z | xargs -0 md5sum > ../md5sum.txt
 
 cat > md5sum.txt << EOF
 This file contains the list of md5 checksums of all files on this medium.

-- 
debian-live/live-helper



More information about the debian-live-changes mailing list