# HG changeset patch # User Pascal Bellard # Date 1222965542 0 # Node ID e64f8e87ea6dc2fb0b0c92c5a50ec2795a9c519f # Parent 90a3c5374ebc1235308baa6da5bea60db3dbb93b linux lzma hardinfo etherboot mISDN busybox: apply path once diff -r 90a3c5374ebc -r e64f8e87ea6d busybox/receipt --- a/busybox/receipt Thu Oct 02 16:24:12 2008 +0000 +++ b/busybox/receipt Thu Oct 02 16:39:02 2008 +0000 @@ -17,8 +17,13 @@ { cd $src while read file; do + if [ -f done.$file ]; then + echo "Skipping $file" + continue + fi echo "Apply $file..." patch -p1 < ../stuff/$file || return 1 + touch done.$file done <> slitaz/patches cp ../stuff/$patch_file slitaz/$patch_file + touch done.$patch_file done <