# HG changeset patch # User John W. Eaton # Date 1630117050 14400 # Node ID 42f808f31738374f48381b8957732548836be255 # Parent cfe2064ab06ab0d78d0e2d729b296da00761f5a9 fix jobs spec error in previous change diff -r cfe2064ab06a -r 42f808f31738 master.cfg --- a/master.cfg Sat Aug 28 02:07:59 2021 +0000 +++ b/master.cfg Fri Aug 27 22:17:30 2021 -0400 @@ -667,9 +667,13 @@ ## if the build is running on a heavily loaded system and this step ## has a high nice value. -def mk_mxe_octave_hg_tarball_step (nice = 0, jobs = 8, branch = "default"): +def mk_mxe_octave_hg_tarball_step (nice = 0, jobs = [1, 8], branch = "default"): - make_cmd = build_cmd_list (["make", "JOBS=" + str (jobs), "hg-octave-dist", "hg-octave-branch=" + branch], + make_cmd = build_cmd_list (["make", + "--jobs=" + str (jobs[0]), + "JOBS=" + str (jobs[1]), + "hg-octave-dist", + "hg-octave-branch=" + branch], nice = nice) return Compile (command = make_cmd, workdir = "src", env = build_env, timeout = 14400)