diff options
author | ivan <ivan> | 2002-06-19 04:54:04 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-06-19 04:54:04 +0000 |
commit | c5a358f8b8b0c7ac8f627f7042d81f4187bed57f (patch) | |
tree | d74921b0cc4592a94683790ff84822674e43e3b1 /bin/pod2x | |
parent | 88f0ff8531750c6eafd0495b7bbdc440d78db379 (diff) |
pod build fix thanks to Stephen Bechard <steve@destek.net>
Diffstat (limited to 'bin/pod2x')
-rwxr-xr-x | bin/pod2x | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ foreach my $file ( glob("./fs_signup/FS-SignupClient/*.pm"), glob("./fs_selfadmin/FS-MailAdminServer/*.pm"), ) { - next if $file =~ /^blib\//; + next if $file =~ /(^|\/)blib\//; #$file =~ /\/([\w\-]+)\.pm$/ or die "oops file $file"; my $name; if ( $file =~ /fs_\w+\/FS\-\w+\/(.*)\.pm$/ ) { |