diff --git a/foocanvas/makediff b/foocanvas/makediff index 0e4930c5d6ec9384be9a782c080c7d118e576ac4..f27927e57e2854675be3e8fcfd0e182860cd7dc2 100755 --- a/foocanvas/makediff +++ b/foocanvas/makediff @@ -27,7 +27,7 @@ new='./tmp_zmap_foocanvas' # set up file list as single file from zmap_foocanvas given on command line or all files # in zmap_foocanvas, it's critical that the list of filenames is given as "./XXXXXX" so -# that patch will pick up the correct files to patch. +# that patch will pick up the correct files to patch from the diff file. # if [ -n "$1" ] then @@ -77,7 +77,11 @@ do # echo "making diff between $old_file and $new_file, output in $diff_file" LC_ALL=C TZ=UTC0 diff -Naur $old_file $new_file > $diff_file -done +done + + +# tidy up... +rm -f $diff_file exit 0