Use %var% instead of @var@ for static build substitutions. Fixing win32 side.

git-svn-id: svn://10.0.0.236/trunk@99986 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cls%seawood.org
2001-07-27 21:32:38 +00:00
parent 5ab3c2052a
commit b2e726ab8e
2 changed files with 5 additions and 5 deletions

View File

@@ -56,13 +56,13 @@ include <$(DEPTH)/config/rules.mak>
$(SEDCMDS): $(LINK_COMP_NAMES)
echo +++make: Creating $@
rm -f $@
echo s/@COMPONENT_NS_GET_MODULE@/\>> $@
echo s/%COMPONENT_NS_GET_MODULE%/\>> $@
sed -e "s/\(.*\)/REGISTER_MODULE_USING(\1_NSGetModule);\\\/" $(LINK_COMP_NAMES) >> $@
echo />> $@
echo s/@COMPONENT_LIST@/\>> $@
echo s/%COMPONENT_LIST%/\>> $@
sed -e "s/\(.*\)/{ \1_NSGM_comps, \1_NSGM_comp_count },\\\/" $(LINK_COMP_NAMES) >> $@
echo />> $@
echo s/@DECLARE_COMPONENT_LIST@/\>> $@
echo s/%DECLARE_COMPONENT_LIST%/\>> $@
sed -e "s/\(.*\)/extern \"C\" nsresult \1_NSGetModule(nsIComponentManager*, nsIFile*, nsIModule**); extern nsModuleComponentInfo* \1_NSGM_comps; extern PRUint32 \1_NSGM_comp_count;\\\/" $(LINK_COMP_NAMES) >> $@
echo />> $@