From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11016 invoked by alias); 5 Dec 2001 17:49:01 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 10971 invoked from network); 5 Dec 2001 17:48:55 -0000 Received: from unknown (HELO vexpert.dbai.tuwien.ac.at) (128.130.111.12) by sources.redhat.com with SMTP; 5 Dec 2001 17:48:55 -0000 Received: from [128.130.111.28] (naos [128.130.111.28]) by vexpert.dbai.tuwien.ac.at (8.11.6/8.11.6) with ESMTP id fB5HmpW25267 for ; Wed, 5 Dec 2001 18:48:53 +0100 (MET) Date: Wed, 05 Dec 2001 09:49:00 -0000 From: Gerald Pfeifer To: gcc@gcc.gnu.org Subject: Parallel bootstrap failure due to i18n in gcc/Makefile.in Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2001-12/txt/msg00220.txt.bz2 The i18n infrastructure seems broken for parallel builds: : TARGET_CPU_DEFAULT="TARGET_CPU_sparc" \ /bin/sh /sw/test/gcc/cvs/gcc/mkconfig.sh config.h HEADERS="auto-host.h ansidecl.h sparc/sol2-sld-64.h defaults.h" DEFINES="POSIX" \ TARGET_CPU_DEFAULT="TARGET_CPU_sparc" \ /bin/sh /sw/test/gcc/cvs/gcc/mkconfig.sh hconfig.h test -d po || mkdir po test -d po || mkdir po mkdir: Failed to make directory "po"; File exists : --statistics /sw/test/gcc/cvs/gcc/po/es.po -o po/es.gmo gmake[2]: *** [po/da.gmo] Error 2 gmake[2]: *** Waiting for unfinished jobs.... gmake[2]: Leaving directory `/files/pfeifer/OBJ-1205-18:24/gcc' gmake[1]: *** [stage1_build] Error 2 I believe what happens is that both "test -d po || mkdir po" commands are executed in parallel, both test statements succeed, and then the two mkdir statements conflict. Gerald