]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Checkin fix: IO::File exports everything we need from Fcntl, so there's no need to...
authormkanat%bugzilla.org <>
Tue, 1 Aug 2006 06:49:53 +0000 (06:49 +0000)
committermkanat%bugzilla.org <>
Tue, 1 Aug 2006 06:49:53 +0000 (06:49 +0000)
Bugzilla/Install/Filesystem.pm
Bugzilla/Install/Localconfig.pm

index 7fc7b73059c259b9ea611d72468386651e7d79bd..baf8d13146ff6ff0cda1249f3ec9d1945049339f 100644 (file)
@@ -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 },
     );
 
index b767ed7b0984f43300e6e17177b3bc2dc4cf6ecc..ef5605d41fa3022b746727494ef2122b52ac5c6c 100644 (file)
@@ -29,7 +29,6 @@ use strict;
 use Bugzilla::Constants;
 
 use Data::Dumper;
-use Fcntl qw(SEEK_END);
 use IO::File;
 use Safe;