[Libreoffice-commits] .: Branch 'libreoffice-3-3' - solenv/bin

Petr Mladek pmladek at kemper.freedesktop.org
Thu Nov 4 09:49:55 PDT 2010


 solenv/bin/modules/installer/systemactions.pm |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

New commits:
commit 5ef780900fec4195cd413f07893f3617078e130c
Author: Petr Mladek <pmladek at suse.cz>
Date:   Thu Nov 4 17:29:51 2010 +0100

    create the installation dir when defined (fdo#30837)
    
    it was logical problem when I updated the code for fdo#30837

diff --git a/solenv/bin/modules/installer/systemactions.pm b/solenv/bin/modules/installer/systemactions.pm
index aebe20f..83502ef 100644
--- a/solenv/bin/modules/installer/systemactions.pm
+++ b/solenv/bin/modules/installer/systemactions.pm
@@ -397,8 +397,9 @@ sub create_directories
 
         if ($newdirectory eq "install" )
         {
-                # put packages into versioned path (fdo#30837)
-                $path = $path . "$installer::globals::ooodownloadfilename";
+            # put packages into versioned path (fdo#30837)
+            $path = $path . "$installer::globals::ooodownloadfilename";
+            create_directory($path);
         }
         else
         {
@@ -417,8 +418,8 @@ sub create_directories
                 }
 
                 $path = $path . $languagestring  . $installer::globals::separator;
+                create_directory($path);
             }
-            create_directory($path);
         }
     }
 


More information about the Libreoffice-commits mailing list