Message-ID: <
20050701175623.GD216@efn.org>
p4raw-id: //depot/perl@25063
open INCS, '>includes.c' or
die "Cannot open includes.c";
foreach $file (@files) {
+ next if $file eq 'errno.c';
+ next unless -f $file;
print INCS qq[#include "$file"\n];
}
close INCS;
if (/$pat/o) {
my $f = $1;
$f =~ s,\\\\,/,g;
- next if $f eq 'errno.c';
- next unless -f $f;
$file{$f} = 1;
}
}