From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32960) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gHfXG-0002Ya-Qr for guix-patches@gnu.org; Tue, 30 Oct 2018 21:43:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gHfXC-0003pw-S4 for guix-patches@gnu.org; Tue, 30 Oct 2018 21:43:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:51807) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gHfXC-0003pa-M1 for guix-patches@gnu.org; Tue, 30 Oct 2018 21:43:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gHfXC-0000Fv-CX for guix-patches@gnu.org; Tue, 30 Oct 2018 21:43:02 -0400 Subject: [bug#33212] [PATCH] libreoffice: honor '--cores=...' during build. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60965) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gHfWX-0001uP-9k for guix-patches@gnu.org; Tue, 30 Oct 2018 21:42:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gHfWV-0003Qy-MK for guix-patches@gnu.org; Tue, 30 Oct 2018 21:42:21 -0400 Received: from mail.onyx.syn-alias.com ([206.152.134.66]:8498 helo=smtp.centurylink.net) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gHfWR-0003JT-6n for guix-patches@gnu.org; Tue, 30 Oct 2018 21:42:16 -0400 From: ericbavier@centurylink.net Date: Tue, 30 Oct 2018 20:42:10 -0500 Message-Id: <20181031014210.1982-1-ericbavier@centurylink.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33212@debbugs.gnu.org Cc: Eric Bavier From: Eric Bavier * gnu/packages/libreoffice.scm (libreoffice)[configure-flags]: Add '--with-parallelism' flag. --- gnu/packages/libreoffice.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm index e5ab5c507..ad8ff24f2 100644 --- a/gnu/packages/libreoffice.scm +++ b/gnu/packages/libreoffice.scm @@ -1093,6 +1093,8 @@ converting QuarkXPress file format. It supports versions 3.1 to 4.1.") (list "--enable-release-build" "--enable-verbose" + ;; Avoid using all cpu cores by default + (format #f "--with-parallelism=~d" (parallel-job-count)) "--disable-fetch-external" ; disable downloads "--with-system-libs" ; enable all --with-system-* flags (string-append "--with-boost-libdir=" -- 2.19.1