Oops. since build_project is no longer AppleScript, "false" should be 0. That's why we were building too often.

git-svn-id: svn://10.0.0.236/trunk@7130 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
scc%netscape.com
1998-08-03 20:20:53 +00:00
parent 260b4cb667
commit bba26953c4

View File

@@ -267,13 +267,13 @@ C<BuildProject()> and C<BuildProjectClean()> are identical, except that the latt
sub BuildProject($;$)
{
my ($project_path, $target_name) = @_;
build_project($project_path, $target_name, "false");
build_project($project_path, $target_name, 0);
}
sub BuildProjectClean($;$)
{
my ($project_path, $target_name) = @_;
build_project($project_path, $target_name, "true");
build_project($project_path, $target_name, 1);
}