------------------------------------------------------------ revno: 799 committer: Rene Engelhard <[EMAIL PROTECTED]> branch nick: debian timestamp: Mon 2007-07-23 22:20:53 +0200 message: remove generated temporaqry files modified: rules scripts/fix_image_rgb
=== modified file 'rules' --- a/rules 2007-07-23 20:07:00 +0000 +++ b/rules 2007-07-23 20:20:53 +0000 @@ -2474,7 +2474,8 @@ TMP=`mktemp -q`; \ cp debian/openoffice.org-dev-doc.doc-base.udk-common-ref $$TMP; \ echo "Files: $$UDK_COMMON_FILES" >> $$TMP; \ - cat $$TMP | perl -e 'while(<>) { if (/^Files/) {$$f=1;} if ($$f eq "1") { chomp(); } print $$_; }' > debian/openoffice.org-dev-doc.doc-base.udk-common-ref + cat $$TMP | perl -e 'while(<>) { if (/^Files/) {$$f=1;} if ($$f eq "1") { chomp(); } print $$_; }' > debian/openoffice.org-dev-doc.doc-base.udk-common-ref; \ + rm -f $$TMP # no idea why this happens; afais this can't come from above # since it doesn't affect the files at the end of the lines... # But fix it..
=== modified file 'scripts/fix_image_rgb' --- a/scripts/fix_image_rgb 2007-07-23 20:07:00 +0000 +++ b/scripts/fix_image_rgb 2007-07-23 20:20:53 +0000 @@ -4,3 +4,5 @@ gm convert -compress none $1 $temp # thanks to Martin Hasch <[EMAIL PROTECTED]> for this tip. bmptoppm $temp | ppmtobmp -bpp 24 > $2 +rm -f $temp +