Skip to content

Commit

Permalink
Rename dynops so they don't conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
leto committed Sep 15, 2009
1 parent f12eb4a commit da81607
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions config/auto/perldoc.pm
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,10 @@ E_NOTE
closedir $ops_fh;

opendir my $dynops_fh, catdir(qw/src dynoplibs/) or die "opendir dynoplibs: $!";
my @dynops = sort grep { !/^\./ && /\.ops$/ } readdir $dynops_fh;
my @dynops = map { "dyn_$_" } sort grep { !/^\./ && /\.ops$/ } readdir $dynops_fh;
closedir $dynops_fh;

my $TEMP_pod = join q{ } =>
map { my $t = $_; $t =~ s/\.ops$/.pod/; "ops/$t" } @ops;
my $TEMP_pod = join q{ } => map { s/\.ops$/.pod/; "ops/$_" } @ops;

my $slash = $conf->data->get('slash');
my $new_perldoc = $conf->data->get('new_perldoc');
Expand Down

0 comments on commit da81607

Please sign in to comment.