wok-next diff gmrun/receipt @ rev 3878
Support icedtea6 bootstrapping
author | Matthew Sheets <rcx@zoominternet.net> |
---|---|
date | Mon Aug 10 12:33:20 2009 +0000 (2009-08-10) |
parents | 360f1070ee8a |
children | 9f19aee613be |
line diff
1.1 --- a/gmrun/receipt Tue Jun 23 12:23:23 2009 +0800 1.2 +++ b/gmrun/receipt Mon Aug 10 12:33:20 2009 +0000 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 &&