diff options
Diffstat (limited to 'soldep/bootstrp')
-rw-r--r-- | soldep/bootstrp/prj.cxx | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/soldep/bootstrp/prj.cxx b/soldep/bootstrp/prj.cxx index c50f6ea2fe75..83eb9417fe9c 100644 --- a/soldep/bootstrp/prj.cxx +++ b/soldep/bootstrp/prj.cxx @@ -4,9 +4,9 @@ * * $RCSfile: prj.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: kz $ $Date: 2006-12-12 16:32:39 $ + * last change: $Author: ihi $ $Date: 2006-12-21 12:21:23 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -2269,7 +2269,7 @@ StarWriter::StarWriter( XmlBuildList* pXmlBuildListObj, SolarFileList *pSolarFil /*****************************************************************************/ StarWriter::StarWriter( XmlBuildList* pXmlBuildListObj, GenericInformationList *pStandLst, ByteString &rVersion, - BOOL bReadComments, BOOL bLocal, const char *pSourceRoot ) + ByteString &rMinor, BOOL bReadComments, BOOL bLocal, const char *pSourceRoot ) /*****************************************************************************/ : Star (pXmlBuildListObj) { @@ -2343,7 +2343,13 @@ StarWriter::StarWriter( XmlBuildList* pXmlBuildListObj, GenericInformationList * #else sAddPath.SearchAndReplaceAll( "/", "\\" ); #endif + //If Minor has been set add it to path + if (rMinor.Len()>0) { + sAddPath += "."; + sAddPath += rMinor; + } String ssAddPath( sAddPath, RTL_TEXTENCODING_ASCII_US ); + aEntry += DirEntry( ssAddPath ); } } |