summaryrefslogtreecommitdiff
path: root/Build-tools
diff options
context:
space:
mode:
Diffstat (limited to 'Build-tools')
-rwxr-xr-xBuild-tools/Do-all-build-steps2
-rwxr-xr-xBuild-tools/Do-compile2
2 files changed, 2 insertions, 2 deletions
diff --git a/Build-tools/Do-all-build-steps b/Build-tools/Do-all-build-steps
index 232231619a3..ba6b93672ed 100755
--- a/Build-tools/Do-all-build-steps
+++ b/Build-tools/Do-all-build-steps
@@ -61,7 +61,7 @@ aclocal; autoheader; aclocal; automake; autoconf
--enable-thread-safe-client \
--without-berkeley-db
-gmake # --jobs=4 does not work.
+gmake -j 2 # --jobs=4 does not work.
time gmake distcheck \
EXTRA_CONF_ARGS="--with-unix-socket-path=/var/tmp/mysql.sock --with-low-memory $EXTRA_CONFIG"
diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile
index 8d5fed87da5..527cd5becde 100755
--- a/Build-tools/Do-compile
+++ b/Build-tools/Do-compile
@@ -43,7 +43,7 @@ else
}
$ENV{'PATH'}= "$pwd/$host/bin:" . $ENV{'PATH'};
$rsh=which("rcmd","rsh");
-$make=which("gmake","make");
+$make=which("gmake -j 2","make");
$tar=which("gtar","tar");
$sendmail=find("/usr/lib/sendmail","/usr/sbin/sendmail");
$sur= $opt_sur ? "/my/local/bin/sur" : "";