From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12330 invoked by alias); 31 Jul 2004 17:42:03 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 12322 invoked from network); 31 Jul 2004 17:42:02 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 31 Jul 2004 17:42:02 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.10/8.12.10) with ESMTP id i6VHg2e3001668 for ; Sat, 31 Jul 2004 13:42:02 -0400 Received: from localhost.redhat.com (porkchop.devel.redhat.com [172.16.58.2]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i6VHfxa12263; Sat, 31 Jul 2004 13:41:59 -0400 Received: from gnu.org (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id CB7002B9D; Sat, 31 Jul 2004 13:41:54 -0400 (EDT) Message-ID: <410BD9E2.5080500@gnu.org> Date: Sat, 31 Jul 2004 17:42:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-GB; rv:1.4.1) Gecko/20040217 MIME-Version: 1.0 To: tromey@redhat.com Cc: gdb-patches@sources.redhat.com Subject: Re: [patch/rfc] Enable PO files. References: <41091DEB.9020904@gnu.org> <87isc575ry.fsf@fleche.redhat.com> In-Reply-To: <87isc575ry.fsf@fleche.redhat.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2004-07/txt/msg00544.txt.bz2 >>>>>>>>>>> "Andrew" == Andrew Cagney writes: > > > Andrew> - the output is put in the _build_ directory (instead of RO srcdir) > > The only issue with this, I think, is how releases are made -- but I > see from the patch that you already dealt with this. > > Andrew> - insisted on using ../intl/ > Andrew> I didn't borrow that - GDB will still use an installed intl/ (I'm > Andrew> wondering if its time to boot intl/ out of GDB's distro). > > Hmm, I thought the point of doing this is that the stuff in intl, > while readily available on Linux boxes, isn't so available elsewhere. > I could be behind the times, though, I haven't looked at the nuts and > bolts of gettext building in years. GCC appears to insist on using intl/ instead of using the installed stuff when available? Do we [gdb] also want to be in the business of maintaining a local intl/? > Andrew> + find * \ > Andrew> + -name '*-stub.c' -prune -o \ > Andrew> + -name 'testsuite' -prune -o \ > Andrew> + -name 'init.c' -prune -o \ > Andrew> + -name '*.[hc]' -print > > I never liked using find for things like this, since I tend to push > files out of the way by "mv foo.c hacked-foo.c", but I can understand > why you'd do it this way. I suppose it could only negatively affect > some subset of "real gdb developers" anyway, provided releases are > always done from a pristine checkout. yes, and yes. Andrew