wok-current diff boxbackup-server/receipt @ rev 4263
urxvt*: fix build with gcc-4.x
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Sep 25 16:26:07 2009 +0200 (2009-09-25) |
parents | f9e78593eb58 |
children | 395ec8205cff |
line diff
1.1 --- a/boxbackup-server/receipt Thu Jun 25 10:49:46 2009 +0000 1.2 +++ b/boxbackup-server/receipt Fri Sep 25 16:26:07 2009 +0200 1.3 @@ -24,6 +24,17 @@ 1.4 compile_rules() 1.5 { 1.6 cd $src 1.7 + while read patch_file; do 1.8 + if [ -f done.$patch_file ]; then 1.9 + echo "Skipping $patch_file" 1.10 + continue 1.11 + fi 1.12 + echo "Apply $patch_file" 1.13 + patch -p1 < ../stuff/$patch_file || return 1 1.14 + touch done.$patch_file 1.15 + done <<EOF 1.16 +boxbackup-0.10_gcc43.u 1.17 +EOF 1.18 ./configure --prefix=/usr $CONFIGURE_ARGS 1.19 make 1.20 }