diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-10-21 09:51:13 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-10-21 09:54:09 +0200 |
commit | 1af9425e8239d1f7e3a12bf9979d190904f695cd (patch) | |
tree | 7d9ab0980878e8af152d3c99c9197233fbd9379e /scp2 | |
parent | fc8a310eef5b4cab9b65e2a3a8e41f039f2acc80 (diff) |
Work around a problem creating symlinks in ooinstall.
It can happen that the ure-link symlink shall be created while its
parent directory has not yet been created. The logic in the Perl code
is so confusing and beyond fixing, that an easy hack out was to flag
the respective directory as always-CREATE, which kind of works around
the problem.
Diffstat (limited to 'scp2')
-rw-r--r-- | scp2/source/ooo/directory_ooo.scp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scp2/source/ooo/directory_ooo.scp b/scp2/source/ooo/directory_ooo.scp index 015c1dc97241..10b32fbab976 100644 --- a/scp2/source/ooo/directory_ooo.scp +++ b/scp2/source/ooo/directory_ooo.scp @@ -92,7 +92,7 @@ Directory gid_Dir_Ooo_Basis #else HostName = "basis${OOOBASEVERSION}"; #endif - Styles = (BASISDIRECTORY); + Styles = (BASISDIRECTORY, CREATE); End #endif |