[Libreoffice-commits] .: solenv/bin

Michael Meeks mmeeks at kemper.freedesktop.org
Fri Jan 7 08:12:40 PST 2011


 solenv/bin/modules/installer/archivefiles.pm |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f53a4569811b20ffbc50ae4a14467e96936431ae
Author: Michael Meeks <michael.meeks at novell.com>
Date:   Fri Jan 7 16:12:48 2011 +0000

    use 0775 not 0755 for chmod

diff --git a/solenv/bin/modules/installer/archivefiles.pm b/solenv/bin/modules/installer/archivefiles.pm
index de5490e..3cd07b7 100644
--- a/solenv/bin/modules/installer/archivefiles.pm
+++ b/solenv/bin/modules/installer/archivefiles.pm
@@ -287,7 +287,7 @@ sub resolving_archive_flag
                     {
                         my $dir = getcwd();
                         chdir($unzipdir);
-                        my $changed = chmod(0755, @dllList);
+                        my $changed = chmod(0775, @dllList);
                         $infoline = "Changed mode of $changed files (of ".scalar(@dllList).")\n";
                         push( @installer::globals::logfileinfo, $infoline);
                         chdir($dir);
@@ -304,7 +304,7 @@ sub resolving_archive_flag
                         my $dir = getcwd();
                         chdir($unzipdir);
                         # Setting unix rights to "775" for all created directories inside the package
-                        my $changed = chmod(0755, @dirs);
+                        my $changed = chmod(0775, @dirs);
                         $infoline = "Changed mode of : $changed; should be: ".scalar(@dirs)."\n";
                         chdir($dir);
         


More information about the Libreoffice-commits mailing list