# HG changeset patch # User Eric Joseph-Alexandre # Date 1294003996 -3600 # Node ID 3b9431a40ff20f87da7dba4d34c23e90cc66c431 # Parent 7a5e5ac499e8b769cbe1de479c07d698d4f5db8b Fix: build issue diff -r 7a5e5ac499e8 -r 3b9431a40ff2 vzquota/receipt --- a/vzquota/receipt Sun Jan 02 22:25:36 2011 +0100 +++ b/vzquota/receipt Sun Jan 02 22:33:16 2011 +0100 @@ -14,13 +14,26 @@ compile_rules() { cd $src + # Apply patches + while read patch_file; do + if [ -f done.$patch_file ]; then + echo "Skipping $patch_file" + continue + fi + echo "Apply $patch_file" + patch -p1 < ../stuff/$patch_file || exit 1 + touch done.$patch_file + done <