solenv/bin/modules/installer/systemactions.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 6efa10d535351216e97c3a736a17ea9f597482b5 Author: Damjan Jovanovic <[email protected]> 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: [email protected] 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 ) { _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
