From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?ISO-8859-1?Q?Jan_Dj=E4rv?= Newsgroups: gmane.emacs.devel Subject: Re: Bootstrap failure using 'make -j4' [Cygwin] Date: Sat, 22 May 2010 13:00:53 +0200 Message-ID: <4BF7B965.9040203@swipnet.se> References: <4BF69E5B.7040006@alice.it> <83vdahz0v0.fsf@gnu.org> <4BF6BB85.3010504@alice.it> <83r5l5yw33.fsf@gnu.org> <4BF70D0B.9050106@alice.it> <83d3wozamt.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1274526231 25257 80.91.229.12 (22 May 2010 11:03:51 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 22 May 2010 11:03:51 +0000 (UTC) Cc: emacs-devel@gnu.org, Angelo Graziosi To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat May 22 13:03:49 2010 connect(): No such file or directory Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OFmUf-0007Sf-0B for ged-emacs-devel@m.gmane.org; Sat, 22 May 2010 13:03:49 +0200 Original-Received: from localhost ([127.0.0.1]:51926 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OFmUe-0002Hr-I0 for ged-emacs-devel@m.gmane.org; Sat, 22 May 2010 07:03:48 -0400 Original-Received: from [140.186.70.92] (port=39646 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OFmSC-0000Er-Og for emacs-devel@gnu.org; Sat, 22 May 2010 07:01:18 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OFmSA-0005OT-N2 for emacs-devel@gnu.org; Sat, 22 May 2010 07:01:16 -0400 Original-Received: from smtprelay-h21.telenor.se ([195.54.99.196]:53301) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OFmS5-0005M9-BD; Sat, 22 May 2010 07:01:09 -0400 Original-Received: from ipb3.telenor.se (ipb3.telenor.se [195.54.127.166]) by smtprelay-h21.telenor.se (Postfix) with ESMTP id E1E06CAA3; Sat, 22 May 2010 13:01:05 +0200 (CEST) X-SENDER-IP: [85.225.45.35] X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: As/NAMRW90tV4S0jPGdsb2JhbACHaJBNBoVXDAEBAQE1Lb0GhRME X-IronPort-AV: E=Sophos;i="4.53,282,1272837600"; d="scan'208";a="522738186" Original-Received: from c-232de155.25-1-64736c10.cust.bredbandsbolaget.se (HELO coolsville.localdomain) ([85.225.45.35]) by ipb3.telenor.se with ESMTP; 22 May 2010 13:01:04 +0200 Original-Received: from anon-86-187.ipredate.net (anon-86-187.ipredate.net [93.182.187.86]) by coolsville.localdomain (Postfix) with ESMTPSA id 166757FA05A; Sat, 22 May 2010 13:01:01 +0200 (CEST) User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; sv-SE; rv:1.9.1.10) Gecko/20100512 Thunderbird/3.0.5 In-Reply-To: <83d3wozamt.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:125053 Archived-At: Eli Zaretskii skrev 2010-05-22 08.57: > Thanks. I think your problem begins with this error message I see in > the log: > > mkdir: impossibile creare la directory "deps": File exists > > This comes from the following fragment in src/Makefile.in: > > .c.o: > @$(MKDEPDIR) > $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $< > > where MKDEPDIR expands to this: > > test -d ${DEPDIR} || mkdir ${DEPDIR} > > Now, if more than one .c.o rule tries to create the `deps' > subdirectory at the same time, one of them might lose due to a race > condition, and fail the entire compilation. > > Could you please try changing this line: > > @$(MKDEPDIR) > into > -@$(MKDEPDIR) > > and see if that makes the problem go away? A better solution is probably to replace test -d ${DEPDIR} || mkdir ${DEPDIR} with mkdir -p ${DEPDIR} Jan D.