[Libreoffice-commits] core.git: Branch 'aoo/trunk' - solenv/bin
Damjan Jovanovic
damjan at apache.org
Sun Jun 5 12:08:55 UTC 2016
solenv/bin/modules/installer/systemactions.pm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 6efa10d535351216e97c3a736a17ea9f597482b5
Author: Damjan Jovanovic <damjan at apache.org>
Date: Sun Jun 5 09:40:50 2016 +0000
#i126736#: fix typo in systemactions.pm
Remove stray backslashes in warning messages in systemactions.pm which
cause warnings.
Patch by: j.nitschke at ok.de
Reviewed by: me
diff --git a/solenv/bin/modules/installer/systemactions.pm b/solenv/bin/modules/installer/systemactions.pm
index d857ba7..181ac8b 100644
--- a/solenv/bin/modules/installer/systemactions.pm
+++ b/solenv/bin/modules/installer/systemactions.pm
@@ -91,7 +91,7 @@ sub create_directory
}
else
{
- $infoline = "\Error: \"$directory\" could not be created. Even the parent directory \"$parentdir\" does not exist and could not be created.\n";
+ $infoline = "Error: \"$directory\" could not be created. Even the parent directory \"$parentdir\" does not exist and could not be created.\n";
$installer::logger::Lang->print($infoline);
if ( -d $parentdir )
{
@@ -211,7 +211,7 @@ sub create_directory_with_privileges
}
else
{
- $infoline = "\Error: \"$directory\" could not be created. Even the parent directory \"$parentdir\" does not exist and could not be created.\n";
+ $infoline = "Error: \"$directory\" could not be created. Even the parent directory \"$parentdir\" does not exist and could not be created.\n";
$installer::logger::Lang->print($infoline);
if ( -d $parentdir )
{
More information about the Libreoffice-commits
mailing list