From owner-freebsd-bugs@FreeBSD.ORG Sat Apr 30 02:10:13 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9773F1065670 for ; Sat, 30 Apr 2011 02:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 86B2E8FC15 for ; Sat, 30 Apr 2011 02:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p3U2ADrJ055319 for ; Sat, 30 Apr 2011 02:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p3U2ADsZ055318; Sat, 30 Apr 2011 02:10:13 GMT (envelope-from gnats) Date: Sat, 30 Apr 2011 02:10:13 GMT Message-Id: <201104300210.p3U2ADsZ055318@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Arnaud Lacombe Cc: Subject: Re: bin/156729: make(1) do not respect.ORDER not in non-parallel mode X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Arnaud Lacombe List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2011 02:10:13 -0000 The following reply was made to PR bin/156729; it has been noted by GNATS. From: Arnaud Lacombe To: bug-followup@freebsd.org, lacombar@gmail.com Cc: Subject: Re: bin/156729: make(1) do not respect.ORDER not in non-parallel mode Date: Fri, 29 Apr 2011 22:05:23 -0400 Disabling compat-mode fixes the issue, as applying the following patch: diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index daeada4..b6074e6 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -1081,12 +1081,6 @@ main(int argc, char **argv) if (getenv("MAKE_JOBS_FIFO") != NULL) forceJobs = TRUE; - /* - * Be compatible if user did not specify -j and did not explicitly - * turned compatibility on - */ - if (!compatMake && !forceJobs) - compatMake = TRUE; /* * Initialize target and suffix modules in preparation for leads to the expected behavior of .ORDER. - Arnaud On Fri, Apr 29, 2011 at 7:27 PM, Arnaud Lacombe wrote: > [If someone could edit the PR to remove the 'not' after .ORDER in the > title, that's a typo. Thanks] >