From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ken Brown Newsgroups: gmane.emacs.devel Subject: make bootstrap fails to create deps directory in time Date: Mon, 23 Nov 2009 08:13:30 -0500 Message-ID: <4B0A8A7A.3030303@cornell.edu> 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: ger.gmane.org 1258982044 8276 80.91.229.12 (23 Nov 2009 13:14:04 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 23 Nov 2009 13:14:04 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Nov 23 14:13:54 2009 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.50) id 1NCYjp-0005zc-Gc for ged-emacs-devel@m.gmane.org; Mon, 23 Nov 2009 14:13:53 +0100 Original-Received: from localhost ([127.0.0.1]:39895 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NCYjo-0001PE-SB for ged-emacs-devel@m.gmane.org; Mon, 23 Nov 2009 08:13:52 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NCYjZ-0001Jp-6f for emacs-devel@gnu.org; Mon, 23 Nov 2009 08:13:37 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NCYjU-0001Hu-Lu for emacs-devel@gnu.org; Mon, 23 Nov 2009 08:13:36 -0500 Original-Received: from [199.232.76.173] (port=44784 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NCYjU-0001Hr-Fw for emacs-devel@gnu.org; Mon, 23 Nov 2009 08:13:32 -0500 Original-Received: from granite1.mail.cornell.edu ([128.253.83.141]:55100 helo=authusersmtp.mail.cornell.edu) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NCYjU-0005es-6F for emacs-devel@gnu.org; Mon, 23 Nov 2009 08:13:32 -0500 Original-Received: from [192.168.1.6] (cpe-67-241-20-9.twcny.res.rr.com [67.241.20.9]) (authenticated bits=0) by authusersmtp.mail.cornell.edu (8.13.1/8.12.10) with ESMTP id nANDDUn6001024 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Mon, 23 Nov 2009 08:13:31 -0500 (EST) User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) X-detected-operating-system: by monty-python.gnu.org: Solaris 9 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:117578 Archived-At: With a fresh cvs checkout, make bootstrap fails on cygwin as follows: gcc -c -Demacs -DHAVE_CONFIG_H -I. -I/tmp/emacs/src -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -g -O2 -Wdeclaration-after-statement -Wno-pointer-sign -MMD -MF deps/ecrt0.d /tmp/emacs/src/ecrt0.c /tmp/emacs/src/ecrt0.c:106: fatal error: opening dependency file deps/ecrt0.d: No such file or directory Examining src after the failure, I see that the deps directory hasn't been created. Is there a problem in the Makefile? If I instead do make -j4, the deps directory gets created and the compilation proceeds. Ken