#99361# regcomp now ignores bootstrap parameters on command line
This commit is contained in:
parent
9a327a66bb
commit
ff267c4363
1 changed files with 10 additions and 2 deletions
|
@ -2,9 +2,9 @@
|
||||||
*
|
*
|
||||||
* $RCSfile: registercomponent.cxx,v $
|
* $RCSfile: registercomponent.cxx,v $
|
||||||
*
|
*
|
||||||
* $Revision: 1.6 $
|
* $Revision: 1.7 $
|
||||||
*
|
*
|
||||||
* last change: $Author: jbu $ $Date: 2002-03-07 13:07:09 $
|
* last change: $Author: jbu $ $Date: 2002-05-22 12:54:28 $
|
||||||
*
|
*
|
||||||
* The Contents of this file are made available subject to the terms of
|
* The Contents of this file are made available subject to the terms of
|
||||||
* either of the following licenses
|
* either of the following licenses
|
||||||
|
@ -336,6 +336,14 @@ sal_Bool parseOptions(int ac, char* av[], Options& rOptions, sal_Bool bCmdFile)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case 'e':
|
||||||
|
{
|
||||||
|
if( av[i][2] == 'n' && av[i][3] == 'v' && av[i][4] == ':' )
|
||||||
|
{
|
||||||
|
// bootstrap variable, ignore it
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
OString tmp( "unknown option " );
|
OString tmp( "unknown option " );
|
||||||
|
|
Loading…
Reference in a new issue