Added the exporting of InstallCleanupDefines.h from xpinstall/cleanup folder and the export of cmessage.txt to the res directory.

This commit is contained in:
dbragg%netscape.com 2001-05-17 05:31:00 +00:00
Родитель c7ef35c977
Коммит 8ec791e1e7
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -773,6 +773,8 @@ sub BuildClientDist()
#XPINSTALL (the one and only!) #XPINSTALL (the one and only!)
InstallFromManifest(":mozilla:xpinstall:public:MANIFEST", "$distdirectory:xpinstall:"); InstallFromManifest(":mozilla:xpinstall:public:MANIFEST", "$distdirectory:xpinstall:");
InstallFromManifest(":mozilla:xpinstall:cleanup:MANIFEST", "$distdirectory:xpinstall:");
# XPFE COMPONENTS # XPFE COMPONENTS
InstallFromManifest(":mozilla:xpfe:components:public:MANIFEST", "$distdirectory:xpfe:components"); InstallFromManifest(":mozilla:xpfe:components:public:MANIFEST", "$distdirectory:xpfe:components");
@ -1531,11 +1533,15 @@ sub BuildLayoutProjects()
unless( $main::build{nglayout} ) { return; } unless( $main::build{nglayout} ) { return; }
assertRightDirectory(); assertRightDirectory();
# $D becomes a suffix to target names for selecting either the debug or non-debug target of a project # $D becomes a suffix to target names for selecting either the debug or non-debug target of a project
my($D) = $main::DEBUG ? "Debug" : ""; my($D) = $main::DEBUG ? "Debug" : "";
# $C becomes a component of target names for selecting either the Carbon or non-Carbon target of a project # $C becomes a component of target names for selecting either the Carbon or non-Carbon target of a project
my($C) = $main::options{carbon} ? "Carbon" : ""; my($C) = $main::options{carbon} ? "Carbon" : "";
my($dist_dir) = GetBinDirectory(); my($dist_dir) = GetBinDirectory();
my($EssentialFiles) = $main::DEBUG ? ":mozilla:dist:viewer_debug:Essential Files:" : ":mozilla:dist:viewer:Essential Files:";
my($resource_dir) = "$dist_dir" . "res:";
StartBuildModule("nglayout"); StartBuildModule("nglayout");
@ -1589,6 +1595,7 @@ sub BuildLayoutProjects()
BuildOneProject(":mozilla:xpinstall:macbuild:xpinstall.mcp", "xpinstall$D.shlb", 1, $main::ALIAS_SYM_FILES, 1); BuildOneProject(":mozilla:xpinstall:macbuild:xpinstall.mcp", "xpinstall$D.shlb", 1, $main::ALIAS_SYM_FILES, 1);
if (!$main::options{carbon}) { if (!$main::options{carbon}) {
BuildOneProject(":mozilla:xpinstall:cleanup:macbuild:XPICleanup.mcp", "XPICleanup$D", 1, $main::ALIAS_SYM_FILES, 0); BuildOneProject(":mozilla:xpinstall:cleanup:macbuild:XPICleanup.mcp", "XPICleanup$D", 1, $main::ALIAS_SYM_FILES, 0);
InstallFromManifest(":mozilla:xpinstall:cleanup:MANIFEST_CMESSAGE", "$resource_dir");
} }
BuildOneProject(":mozilla:xpinstall:macbuild:xpistub.mcp", "xpistub$D.shlb", 1, $main::ALIAS_SYM_FILES, 0); BuildOneProject(":mozilla:xpinstall:macbuild:xpistub.mcp", "xpistub$D.shlb", 1, $main::ALIAS_SYM_FILES, 0);
BuildOneProject(":mozilla:xpinstall:wizard:libxpnet:macbuild:xpnet.mcp", "xpnet$D.Lib", 0, 0, 0); BuildOneProject(":mozilla:xpinstall:wizard:libxpnet:macbuild:xpnet.mcp", "xpnet$D.Lib", 0, 0, 0);