diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-29 18:34:02 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-29 18:39:12 +0300 |
commit | afdde14cb80286da1474f2a7b2798ff3b97c9037 (patch) | |
tree | 7f466cfc06c421f6e200182ed4e6526d57fc41b7 /l10ntools | |
parent | 838e4d3efe18f33e5d821d4e645a1b17f7b33015 (diff) |
Don't skip the clone directory on Windows
As localize_sl is not a Cygwin program it won't understand the
symlinks pointing to clone/*/* anyway, so we won't get any duplicates
if we just let it recurse down the clone directory.
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/srciter.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/l10ntools/source/srciter.cxx b/l10ntools/source/srciter.cxx index bf407c9189fa..6a16d92d0227 100644 --- a/l10ntools/source/srciter.cxx +++ b/l10ntools/source/srciter.cxx @@ -82,7 +82,9 @@ void SourceTreeIterator::ExecuteDirectory( transex::Directory& aDirectory ) sDirName.indexOf( WCARD5 , 0 ) > -1 || sDirName.indexOf( WCARD6 , 0 ) > -1 || sDirName.indexOf( WCARD7 , 0 ) > -1 || +#ifndef WNT sDirName.indexOf( WCARD8 , 0 ) > -1 || +#endif sDirName.indexOf( WCARD9 , 0 ) > -1 ) return; //printf("**** %s \n", OUStringToOString( sDirName , RTL_TEXTENCODING_UTF8 , sDirName.getLength() ).getStr() ); |