summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-07-13 16:10:02 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-07-13 16:10:02 +0000
commit6595796bc60138440a072cc20ca9461dccc26bdb (patch)
treeed0676b3dec24f83df4ea8803a896ecca32d35e7 /tools
parent45347e80264747f06d503ea7bbf25132e2be7070 (diff)
INTEGRATION: CWS ooo20040620 (1.17.38); FILE MERGED
2004/06/15 20:38:29 vq 1.17.38.1: #i30156# Change switches of rsc/rscdep with filename to -xx=<filename>.
Diffstat (limited to 'tools')
-rw-r--r--tools/bootstrp/rscdep.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/bootstrp/rscdep.cxx b/tools/bootstrp/rscdep.cxx
index 4d061405f06b..aaf45da3d7a1 100644
--- a/tools/bootstrp/rscdep.cxx
+++ b/tools/bootstrp/rscdep.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: rscdep.cxx,v $
*
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
- * last change: $Author: hjs $ $Date: 2004-06-28 16:28:25 $
+ * last change: $Author: rt $ $Date: 2004-07-13 17:10:02 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -134,14 +134,14 @@ main( int argc, char **argv )
for ( int i=1; i<argc; i++)
{
strcpy( aBuf, (const char *)argv[i] );
- if ( aBuf[0] == '-' && aBuf[1] == 'f' && aBuf[2] == 'o' )
+ if ( aBuf[0] == '-' && aBuf[1] == 'f' && aBuf[2] == 'o' && aBuf[3] == '=' )
{
- strcpy(pOutputFileName, &aBuf[3]);
+ strcpy(pOutputFileName, &aBuf[4]);
//break;
}
- if ( aBuf[0] == '-' && aBuf[1] == 'f' && aBuf[2] == 'p' )
+ if ( aBuf[0] == '-' && aBuf[1] == 'f' && aBuf[2] == 'p' && aBuf[3] == '=' )
{
- strcpy(pSrsFileName, &aBuf[3]);
+ strcpy(pSrsFileName, &aBuf[4]);
String aName( pSrsFileName, gsl_getSystemTextEncoding());
USHORT nPos = 0;
DirEntry aDest( aName );