r2779 - dists/trunk/live-helper/helpers
lamby-guest at alioth.debian.org
lamby-guest at alioth.debian.org
Fri Aug 17 09:49:48 UTC 2007
Author: lamby-guest
Date: 2007-08-17 09:49:48 +0000 (Fri, 17 Aug 2007)
New Revision: 2779
Modified:
dists/trunk/live-helper/helpers/lh_binary_md5sum
Log:
Fixes problem where binary image contains filenames with spaces
Modified: dists/trunk/live-helper/helpers/lh_binary_md5sum
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_md5sum 2007-08-16 23:06:22 UTC (rev 2778)
+++ dists/trunk/live-helper/helpers/lh_binary_md5sum 2007-08-17 09:49:48 UTC (rev 2779)
@@ -55,7 +55,7 @@
# Calculating md5sums
cd binary
-find . -type f | sort | grep -v 'isolinux/isolinux.bin' | grep -v 'boot/grub/stage2_eltorito' | xargs md5sum > ../md5sum.txt
+find . -type f -print0 | sort | grep -v 'isolinux/isolinux.bin' | grep -v 'boot/grub/stage2_eltorito' | xargs -0 md5sum > ../md5sum.txt
cat > md5sum.txt << EOF
This file contains the list of md5 checksums of all files on this medium.
More information about the debian-live-changes
mailing list