diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-08-02 14:58:28 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-08-02 14:58:28 +0000 |
commit | ac3a233289e0b5ee945774e1cebca24fdc2eef35 (patch) | |
tree | 1dce9a8f96f68e0b86ed71a4b6b87de3e59a7aee | |
parent | 9afff8834f66eddaa5e775178f5219defb18c5b8 (diff) |
#100000# Avoid collisions when testing write access on SHIPDRIVE
-rw-r--r-- | solenv/bin/modules/installer/control.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/control.pm b/solenv/bin/modules/installer/control.pm index 7fcc1d194821..19e02ab907ff 100644 --- a/solenv/bin/modules/installer/control.pm +++ b/solenv/bin/modules/installer/control.pm @@ -429,7 +429,7 @@ sub check_updatepack # try to write into $shipdrive - $directory = $installer::globals::product . "_" . $installer::globals::compiler . "_" . $installer::globals::buildid . "_" . $installer::globals::languageproducts[0] . "_test"; + $directory = $installer::globals::product . "_" . $installer::globals::compiler . "_" . $installer::globals::buildid . "_" . $installer::globals::languageproducts[0] . "_test_$$"; $directory = $shipdrive . $installer::globals::separator . $directory; $infoline = "Try to create directory: $directory\n"; |