From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12770 invoked by alias); 17 Jul 2006 16:21:30 -0000 Received: (qmail 12750 invoked by uid 22791); 17 Jul 2006 16:21:29 -0000 X-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from sunsite.ms.mff.cuni.cz (HELO sunsite.mff.cuni.cz) (195.113.15.26) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 17 Jul 2006 16:21:23 +0000 Received: from sunsite.mff.cuni.cz (sunsite.mff.cuni.cz [127.0.0.1]) by sunsite.mff.cuni.cz (8.13.1/8.13.1) with ESMTP id k6HGJ3Vj027906; Mon, 17 Jul 2006 18:19:03 +0200 Received: (from jj@localhost) by sunsite.mff.cuni.cz (8.13.1/8.13.1/Submit) id k6HGJ2N3027905; Mon, 17 Jul 2006 18:19:02 +0200 Date: Mon, 17 Jul 2006 16:21:00 -0000 From: Jakub Jelinek To: Daniel Jacobowitz Cc: binutils@sourceware.org, Steve Ellcey , gdb-patches@sourceware.org, rda@sourceware.org Subject: Re: changes in 'intl' Message-ID: <20060717161901.GZ3823@sunsite.mff.cuni.cz> Reply-To: Jakub Jelinek References: <4475B7AD.46E1073E@dessent.net> <20060525144537.GA1017@nevyn.them.org> <20060525174240.GA5632@nevyn.them.org> <20060525224932.GA12464@nevyn.them.org> <20060531153301.GA17450@nevyn.them.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060531153301.GA17450@nevyn.them.org> User-Agent: Mutt/1.4.1i Mailing-List: contact rda-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Post: List-Help: , Sender: rda-owner@sourceware.org X-SW-Source: 2006-q3/txt/msg00000.txt.bz2 On Wed, May 31, 2006 at 11:33:02AM -0400, Daniel Jacobowitz wrote: > Index: opcodes/ChangeLog > 2006-05-31 Daniel Jacobowitz > > * Makefile.am (INCLUDES): Use @INCINTL@. > * acinclude.m4: Include new gettext macros. > * configure.in: Use ZW_GNU_GETTEXT_SISTER_DIR and AM_PO_SUBDIRS. > Remove local code for po/Makefile. > * Makefile.in, aclocal.m4, configure: Regenerated. This broke parallel make in binutils, as opcodes sometimes will and sometimes won't have NLS configured in, depending on the exact order of configure-* make targets (and the speed in intl's configure). Fixed thusly, ok to commit (shall that be committed to both gcc and src trunk)? 2006-07-17 Jakub Jelinek * Makefile.def: Add dependencies for configure-opcodes on configure-intl and all-opcodes on all-intl. * Makefile.in: Regenerated. --- Makefile.def.jj 2006-06-29 14:31:53.000000000 +0200 +++ Makefile.def 2006-07-17 17:50:04.000000000 +0200 @@ -353,8 +353,10 @@ dependencies = { module=all-ld; on=all-b dependencies = { module=all-ld; on=all-build-flex; }; dependencies = { module=all-ld; on=all-intl; }; +dependencies = { module=configure-opcodes; on=configure-intl; }; dependencies = { module=all-opcodes; on=all-bfd; }; dependencies = { module=all-opcodes; on=all-libiberty; }; +dependencies = { module=all-opcodes; on=all-intl; }; // Other host modules in the 'src' repository. dependencies = { module=all-dejagnu; on=all-tcl; }; --- Makefile.in.jj 2006-06-29 14:31:53.000000000 +0200 +++ Makefile.in 2006-07-17 17:57:30.000000000 +0200 @@ -41053,6 +41053,14 @@ all-stage3-ld: maybe-all-stage3-intl all-stage4-ld: maybe-all-stage4-intl all-stageprofile-ld: maybe-all-stageprofile-intl all-stagefeedback-ld: maybe-all-stagefeedback-intl +configure-opcodes: maybe-configure-intl + +configure-stage1-opcodes: maybe-configure-stage1-intl +configure-stage2-opcodes: maybe-configure-stage2-intl +configure-stage3-opcodes: maybe-configure-stage3-intl +configure-stage4-opcodes: maybe-configure-stage4-intl +configure-stageprofile-opcodes: maybe-configure-stageprofile-intl +configure-stagefeedback-opcodes: maybe-configure-stagefeedback-intl all-opcodes: maybe-all-bfd all-stage1-opcodes: maybe-all-stage1-bfd @@ -41069,6 +41077,14 @@ all-stage3-opcodes: maybe-all-stage3-lib all-stage4-opcodes: maybe-all-stage4-libiberty all-stageprofile-opcodes: maybe-all-stageprofile-libiberty all-stagefeedback-opcodes: maybe-all-stagefeedback-libiberty +all-opcodes: maybe-all-intl + +all-stage1-opcodes: maybe-all-stage1-intl +all-stage2-opcodes: maybe-all-stage2-intl +all-stage3-opcodes: maybe-all-stage3-intl +all-stage4-opcodes: maybe-all-stage4-intl +all-stageprofile-opcodes: maybe-all-stageprofile-intl +all-stagefeedback-opcodes: maybe-all-stagefeedback-intl all-dejagnu: maybe-all-tcl all-dejagnu: maybe-all-expect all-dejagnu: maybe-all-tk Jakub