summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xpulse-build-script10
1 files changed, 5 insertions, 5 deletions
diff --git a/pulse-build-script b/pulse-build-script
index 447cc52..3dcac01 100755
--- a/pulse-build-script
+++ b/pulse-build-script
@@ -203,14 +203,14 @@ my $make = "nmake";
$make = "make " . prop("make.args", "-j4") if ($Config{'osname'} !~ /mswin/i);
# we support JOM / IncrediBuild for Windows
-if ($Config{'osname'} =~ /mswin/i) {
+#if ($Config{'osname'} =~ /mswin/i) {
# if (find_exe('xgconsole.exe') && find_exe('jom.exe')) {
# $make = "xgconsole /NOLOGO /COMMAND=\"jom.exe /NOLOGO " . prop("make.args", "-j20") . " /F Makefile\" /PROFILE=\"C:/Jom/bin/profile.xml\" /MAXCPUS=20";
# } elsif (find_exe('jom.exe')) {
- if (find_exe('jom.exe')) {
- $make = "jom " . prop("make.args", "-j20");
- }
-}
+# if (find_exe('jom.exe')) {
+# $make = "jom " . prop("make.args", "-j20");
+# }
+#}
system_v("$make") and die("$make failed");