# HG changeset patch # User Eric Joseph-Alexandre # Date 1262040351 -3600 # Node ID f3a7e7dd7e7c4aa571d98b391f601e0c34db8842 # Parent 083f2c3ff6c79133e0973341e296a5e6f3120640 squidguard: add patches diff -r 083f2c3ff6c7 -r f3a7e7dd7e7c squidguard/receipt --- a/squidguard/receipt Mon Dec 28 23:42:02 2009 +0100 +++ b/squidguard/receipt Mon Dec 28 23:45:51 2009 +0100 @@ -16,11 +16,22 @@ compile_rules() { cd $src + + # Security patches + while read patch_file; do + echo "Apply $patch_file" + tar xvzf ../stuff/$patch_file || exit 1 + cp -a $(basename $patch_file .tar.gz)/* src + done <