wok diff gmrun/receipt @ rev 4677

Up: intltool (0.40.6)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Dec 30 10:26:31 2009 +0100 (2009-12-30)
parents 360f1070ee8a
children 9f19aee613be
line diff
     1.1 --- a/gmrun/receipt	Tue Jun 23 12:23:23 2009 +0800
     1.2 +++ b/gmrun/receipt	Wed Dec 30 10:26:31 2009 +0100
     1.3 @@ -15,7 +15,14 @@
     1.4  compile_rules()
     1.5  {
     1.6      cd $src
     1.7 -    patch -p1 -i ../stuff/gmrun-0.9.2-gcc43.patch &&
     1.8 +    while read file; do
     1.9 +        [ -f done.$file ] && continue
    1.10 +        echo "Apply $file..."
    1.11 +        patch -p1 < ../stuff/$file || return 1
    1.12 +        touch done.$file
    1.13 +    done <<EOT
    1.14 +gmrun-0.9.2-gcc43.patch
    1.15 +EOT
    1.16      ./configure --prefix=/usr \
    1.17          $CONFIGURE_ARGS &&
    1.18      make &&