On 11 Jan 2004 at 22:40, Autrijus Tang wrote:

> 
> Both should be in the snapshot version now.  If your holiday is still 
> ongoing, please test it a bit. :-)
> 

The snapshot works for me.

On the other point:

When running "pp -P", par.pl isn't executing any DLLs out of the temp dir; they are 
executing out of the Perl tree. The reason the temp dir wasn't being deleted, in the 
case I tried, is because @tmpfile was empty. The END block in par.pl is:

END { if (@tmpfile) {
    unlink @tmpfile;
    rmdir $par_temp;
    $par_temp =~ s{[^\\/]*$}{};
    rmdir $par_temp;
} }

and needs to be:

END {
    if ($ENV{PAR_CLEAN}) {
        unlink @tmpfile if @tmpfile;
        rmdir $par_temp;
        $par_temp =~ s{[^\\/]*$}{};
        rmdir $par_temp;
    }
}

Alan Stewart

P.S.

How about the modified tkpp with Clean and output window? Did that look OK?

Reply via email to