Import mathml.css into ua.css when building MathML. Not part of build. r=jj. a=waterson.

This commit is contained in:
Peter.VanderBeken%pandora.be 2000-07-11 06:47:53 +00:00
parent 6a1506007a
commit bd8d457314

View File

@ -551,7 +551,18 @@ sub MakeResourceAliases()
#//
#// Make aliases of resource files
#//
_MakeAlias(":mozilla:layout:html:document:src:ua.css", "$resource_dir");
if (! $main::options{mathml})
{
_MakeAlias(":mozilla:layout:html:document:src:ua.css", "$resource_dir");
}
else
{
#// Building MathML so include the mathml.css file in ua.css
_MakeAlias(":mozilla:layout:mathml:content:src:mathml.css", "$resource_dir");
_copy(":mozilla:layout:html:document:src:ua.css", "$resource_dir"."ua.css");
@ARGV = ("$resource_dir"."ua.css");
do ":mozilla:layout:mathml:content:src:mathml-css.pl";
}
_MakeAlias(":mozilla:layout:html:document:src:html.css", "$resource_dir");
_MakeAlias(":mozilla:layout:html:document:src:quirk.css", "$resource_dir");
_MakeAlias(":mozilla:layout:html:document:src:arrow.gif", "$resource_dir");