Move the resouce copying to the end, so that we have fewer files in dist during the build process. This should speed up looking for include files.

git-svn-id: svn://10.0.0.236/trunk@68134 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sfraser%netscape.com 2000-05-03 21:40:44 +00:00
parent b555299fa2
commit f94a42e025

View File

@ -1955,7 +1955,6 @@ sub BuildMozilla()
sub BuildProjects()
{
MakeResourceAliases();
# BuildJarFiles();
MakeLibAliases();
@ -1977,4 +1976,8 @@ sub BuildProjects()
BuildExtensionsProjects();
BuildMailNewsProjects();
BuildMozilla();
# do this last so as not to pollute dist with non-include files
# before building projects.
MakeResourceAliases();
}