# HG changeset patch # User Pascal Bellard # Date 1223130626 0 # Node ID 3d99ad1426117c1d6d002dfccb57287cb747da48 # Parent 2a0038b01ed7257e0af2053566fc1129f9ce4cc6 busybox/depmod: add ignored options uqrC diff -r 2a0038b01ed7 -r 3d99ad142611 busybox/receipt --- a/busybox/receipt Sat Oct 04 13:18:21 2008 +0000 +++ b/busybox/receipt Sat Oct 04 14:30:26 2008 +0000 @@ -17,13 +17,10 @@ { cd $src while read file; do - if [ -f done.$file ]; then - echo "Skipping $file" - continue - fi + [ -f done.$file ] && continue echo "Apply $file..." patch -p1 < ../stuff/$file || return 1 - touch done.$file + touch done.$file done <