wok diff boxbackup-server/receipt @ rev 3917

syslinux/ifmem: pre-94 bioses support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 18 18:21:24 2009 +0200 (2009-08-18)
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	Tue Aug 18 18:21:24 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  }