Commit e1f92f46 authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

Checkin fix: IO::File exports everything we need from Fcntl, so there's no need…

Checkin fix: IO::File exports everything we need from Fcntl, so there's no need to use Fcntl--it just causes errors. Also fixing a small typo that made docs/xml have the wrong permissions.
parent e3cf843d
......@@ -29,7 +29,6 @@ use strict;
use Bugzilla::Constants;
use Bugzilla::Install::Localconfig;
use Fcntl;
use File::Find;
use IO::File;
use POSIX ();
......@@ -161,7 +160,7 @@ sub FILESYSTEM {
dirs => $ws_dir_readable },
'docs/images' => { files => $ws_readable,
dirs => $ws_dir_readable },
'docs/xml' => { files => $owner_readable,
'docs/xml' => { files => $owner_dir_readable,
dirs => $owner_readable },
);
......
......@@ -29,7 +29,6 @@ use strict;
use Bugzilla::Constants;
use Data::Dumper;
use Fcntl qw(SEEK_END);
use IO::File;
use Safe;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment