Use %var% instead of @var@ as placeholders for the static build dynamic module lists. This prevents acoutput-fast.pl from complaining about unknown variables.

git-svn-id: svn://10.0.0.236/trunk@99904 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cls%seawood.org
2001-07-25 07:01:05 +00:00
parent 345914af7e
commit 080b97751c
6 changed files with 19 additions and 19 deletions

View File

@@ -53,7 +53,7 @@ struct nsModuleComponentInfoContainer {
PRUint32 count;
};
@DECLARE_COMPONENT_LIST@
%DECLARE_COMPONENT_LIST%
static nsresult
NS_RegisterMetaModules(nsIComponentManager *aCompMgr,
@@ -63,7 +63,7 @@ NS_RegisterMetaModules(nsIComponentManager *aCompMgr,
{
nsresult rv = NS_OK;
@COMPONENT_NS_GET_MODULE@
%COMPONENT_NS_GET_MODULE%
{};
@@ -129,7 +129,7 @@ static nsModuleComponentInfo components[] =
static nsModuleComponentInfoContainer componentsList[] = {
{ components, sizeof(components)/sizeof(components[0]) },
@COMPONENT_LIST@
%COMPONENT_LIST%
{ nsnull, 0 }
};