From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7172 invoked by alias); 30 Jul 2004 18:56:13 -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 7164 invoked from network); 30 Jul 2004 18:56:12 -0000 Received: from unknown (207.174.178.92) by sourceware.org with QMTP; 30 Jul 2004 18:56:12 -0000 Received: (qmail 32086 invoked by uid 513); 30 Jul 2004 18:01:49 -0000 Received: from tromey@redhat.com by email2 by uid 504 with qmail-scanner-1.20 (clamscan: 0.65. Clear:RC:1(207.189.214.58):. Processed in 0.226354 secs); 30 Jul 2004 18:01:49 -0000 Received: from 58-214-189-207.dyn.peakpeak.com (HELO fleche.redhat.com) ([207.189.214.58]) (envelope-sender ) by email2.peakpeak.com (qmail-ldap-1.03) with SMTP for ; 30 Jul 2004 18:01:48 -0000 Received: by fleche.redhat.com (Postfix, from userid 1000) id 143164F8056; Fri, 30 Jul 2004 11:40:18 -0600 (MDT) To: Andrew Cagney Cc: gdb-patches@sources.redhat.com Subject: Re: [patch/rfc] Enable PO files. References: <41091DEB.9020904@gnu.org> From: Tom Tromey Reply-To: tromey@redhat.com X-Attribution: Tom Date: Fri, 30 Jul 2004 18:56:00 -0000 In-Reply-To: <41091DEB.9020904@gnu.org> Message-ID: <87isc575ry.fsf@fleche.redhat.com> User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2004-07/txt/msg00512.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. 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. Tom