Fixed builder not passing GCC version in some cases (bug 3750, r=ds, a12=ds).

This commit is contained in:
David Anderson 2009-03-30 08:29:47 +02:00
parent 16756e550f
commit 569f4646a0

View File

@ -75,11 +75,11 @@ namespace builder
} }
else if (lib.build_mode == BuildMode.BuildMode_OldMetamod) else if (lib.build_mode == BuildMode.BuildMode_OldMetamod)
{ {
makefile_args = "ENGINE=\"original\""; makefile_args += "ENGINE=\"original\"";
} }
else if (lib.build_mode == BuildMode.BuildMode_Left4Dead) else if (lib.build_mode == BuildMode.BuildMode_Left4Dead)
{ {
makefile_args = "ENGINE=\"left4dead\""; makefile_args += "ENGINE=\"left4dead\"";
} }
/* Clean the project first */ /* Clean the project first */