From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D8799139694 for ; Wed, 31 May 2017 17:48:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F77021C0A6; Wed, 31 May 2017 17:48:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DBF2E21C0A6 for ; Wed, 31 May 2017 17:48:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9D0F6341738 for ; Wed, 31 May 2017 17:48:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41C717463 for ; Wed, 31 May 2017 17:48:29 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1496252310.1f44cdf96ee7ccc9ff17b05ad73330c2d89479aa.ulm@gentoo> Subject: [gentoo-commits] proj/pms:master commit in: / X-VCS-Repository: proj/pms X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 1f44cdf96ee7ccc9ff17b05ad73330c2d89479aa X-VCS-Branch: master Date: Wed, 31 May 2017 17:48:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d15d84c4-5c60-4c1d-9b66-41e76732f1a2 X-Archives-Hash: d764446558d4201c964b3f314c4ca970 commit: 1f44cdf96ee7ccc9ff17b05ad73330c2d89479aa Author: Ulrich Müller gentoo org> AuthorDate: Wed May 31 17:38:30 2017 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed May 31 17:38:30 2017 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=1f44cdf9 Makefile: Disable parallel make. Parallel make fails because of LaTeX's intermediate files. Making this work may require a separate build directory for each target. Feel free to fix if you think it's worth the effort. Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 206a7fc..1f500d5 100644 --- a/Makefile +++ b/Makefile @@ -98,3 +98,4 @@ maintainer-clean: clean .PHONY: all html dist upload clean maintainer-clean .DELETE_ON_ERROR: +.NOTPARALLEL: