From 203462bc251b0a47cd67ea1cf9860bfa42c99cac Mon Sep 17 00:00:00 2001 From: Tim Mattox Date: Fri, 30 May 2008 04:39:48 +0000 Subject: [PATCH] Apparently "make -j 4 distcheck" has a race condition when "installing" in parallel. Remove the "-j 4" so we don't get random tarball build failures. Hopefully this won't take all that much longer to make the tarball each night. This commit was SVN r18552. --- contrib/nightly/create_tarball.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/nightly/create_tarball.sh b/contrib/nightly/create_tarball.sh index 2800330a60..3601f855e4 100755 --- a/contrib/nightly/create_tarball.sh +++ b/contrib/nightly/create_tarball.sh @@ -285,7 +285,7 @@ do_command "./configure --enable-dist" # that this may need to change in the future... save=$LD_LIBRARY_PATH LD_LIBRARY_PATH= -do_command "make -j 4 distcheck" +do_command "make distcheck" LD_LIBRARY_PATH=$save save=