Message-ID: <O
F85EC8E5E.4DF3A439-ON85257131.0055870A-85257131.0055E07C@factset.com>
p4raw-id: //depot/perl@27497
next if $f =~ /nonesuch/;
- my $outfilename = ($HACK > 1) ? $wouldxml{$f} : "$wouldxml{$f}\.out";
+ # foo.xml.out is not a portable filename. foo.xml_out may be a bit more portable
+
+ my $outfilename = ($HACK > 1) ? $wouldxml{$f} : "$wouldxml{$f}_out";
if($HACK) {
open OUT, ">$outfilename" or die "Can't write-open $outfilename: $!\n";
binmode(OUT);