From: mkanat%bugzilla.org <> Date: Tue, 1 Aug 2006 06:49:53 +0000 (+0000) Subject: Checkin fix: IO::File exports everything we need from Fcntl, so there's no need to... X-Git-Tag: bugzilla-2.23.3~200 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1f92f46ff660b5071c7edbe2130b96356e48529;p=thirdparty%2Fbugzilla.git 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. --- diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm index 7fc7b73059..baf8d13146 100644 --- a/Bugzilla/Install/Filesystem.pm +++ b/Bugzilla/Install/Filesystem.pm @@ -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 }, ); diff --git a/Bugzilla/Install/Localconfig.pm b/Bugzilla/Install/Localconfig.pm index b767ed7b09..ef5605d41f 100644 --- a/Bugzilla/Install/Localconfig.pm +++ b/Bugzilla/Install/Localconfig.pm @@ -29,7 +29,6 @@ use strict; use Bugzilla::Constants; use Data::Dumper; -use Fcntl qw(SEEK_END); use IO::File; use Safe;