From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13363 invoked from network); 14 Jan 2007 20:31:04 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO autolearn=ham version=3.1.7 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 14 Jan 2007 20:31:04 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 6863 invoked from network); 14 Jan 2007 20:30:58 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 14 Jan 2007 20:30:58 -0000 Received: (qmail 1308 invoked by alias); 14 Jan 2007 20:30:55 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 23107 Received: (qmail 1299 invoked from network); 14 Jan 2007 20:30:54 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 14 Jan 2007 20:30:54 -0000 Received: (qmail 6551 invoked from network); 14 Jan 2007 20:30:54 -0000 Received: from vms042pub.verizon.net (206.46.252.42) by a.mx.sunsite.dk with SMTP; 14 Jan 2007 20:30:51 -0000 Received: from torch.brasslantern.com ([71.116.79.148]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2-6.01 (built Apr 3 2006)) with ESMTPA id <0JBV00BGKKZD7TO0@vms042.mailsrvcs.net> for zsh-workers@sunsite.dk; Sun, 14 Jan 2007 14:30:50 -0600 (CST) Received: from torch.brasslantern.com (localhost.localdomain [127.0.0.1]) by torch.brasslantern.com (8.13.1/8.13.1) with ESMTP id l0EKUmMV018434 for ; Sun, 14 Jan 2007 12:30:49 -0800 Received: (from schaefer@localhost) by torch.brasslantern.com (8.13.1/8.13.1/Submit) id l0EKUm9P018433 for zsh-workers@sunsite.dk; Sun, 14 Jan 2007 12:30:48 -0800 Date: Sun, 14 Jan 2007 12:30:47 -0800 From: Bart Schaefer Subject: Re: Building zsh should work with "make -j2" In-reply-to: <20070114201004.GA10583@prunille.vinc17.org> To: zsh-workers@sunsite.dk Message-id: <070114123048.ZM18432@torch.brasslantern.com> MIME-version: 1.0 X-Mailer: OpenZMail Classic (0.9.2 24April2005) Content-type: text/plain; charset=us-ascii References: <20070112235849.GZ22968@prunille.vinc17.org> <070113102141.ZM26285@torch.brasslantern.com> <20070114201004.GA10583@prunille.vinc17.org> Comments: In reply to Vincent Lefevre "Re: Building zsh should work with "make -j2"" (Jan 14, 9:10pm) On Jan 14, 9:10pm, Vincent Lefevre wrote: } } Since it is not supported, isn't there a way to disable the parallel } build completely in the Makefile? In a way that's not GNUmake-specific? I don't know of one. There's the ".NOTPARALLEL" target, which could be added to the end of Config/defs.mk.in to control GNUmake; I suppose that might be worth doing. However, it doesn't really solve the general problem. Index: Config/defs.mk.in =================================================================== --- Config/defs.mk.in 31 May 2006 14:11:59 -0000 1.7 +++ Config/defs.mk.in 14 Jan 2007 20:26:28 -0000 @@ -97,3 +98,6 @@ # override built-in suffix list .SUFFIXES: + +# parallel build is not supported +.NOTPARALLEL: --