summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2010-08-18 17:20:56 +0200
committerKurt Zenker <kz@openoffice.org>2010-08-18 17:20:56 +0200
commit543f129680b7d9f68f2ec75c64f00a454e05f9c8 (patch)
tree3748fb5ce8bd852ccaa83143ed570d1d1d0a68ed /solenv
parent7e5f8186f2b2c11e9e3140703338b34971bda7c4 (diff)
masterfix: #i113912# fixed creating log directory
Diffstat (limited to 'solenv')
-rwxr-xr-xsolenv/bin/build.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/build.pl b/solenv/bin/build.pl
index d7bc7df26442..60a97fb2e764 100755
--- a/solenv/bin/build.pl
+++ b/solenv/bin/build.pl
@@ -234,7 +234,7 @@
if (defined $html_path) {
$html_file = CorrectPath($html_path . '/' . $ENV{INPATH}. '.build.html');
} else {
- my $log_directory = Cwd::realpath(CorrectPath($StandDir . '/../log'));
+ my $log_directory = Cwd::realpath(CorrectPath($StandDir . '/..')) . '/log';
if ((!-d $log_directory) && (!mkdir($log_directory))) {
print_error("Cannot create $log_directory for writing html file\n");
};