From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Received: (qmail 16762 invoked from network); 10 Jan 2003 06:43:57 -0000 Received: from unknown (HELO localhost.redhat.com) (24.157.209.173) by sources.redhat.com with SMTP; 10 Jan 2003 06:43:57 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 5F9B43CCF; Fri, 10 Jan 2003 01:43:48 -0500 (EST) Message-ID: <3E1E6BA4.4070003@redhat.com> Date: Fri, 10 Jan 2003 06:43:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.1) Gecko/20021211 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Michael Elizabeth Chastain Cc: gdb-patches@sources.redhat.com Subject: Re: [rfa] doc/gdbint.texinfo: update commands for release tarball References: <200301100529.h0A5TVm14169@duracef.shout.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2003-01/txt/msg00394.txt.bz2 > This patch updates gdbint.texinfo with the new instructions for making > a release tarball. > > Note that more people than the release manager need this information. > I wrote this patch because I needed to know how snapshot tarballs were > made in order to debug a problem with testsuite/gdb.c++ files inside > the current snapshots. > > Testing: I followed the instructions on a fresh tree and I got some nice > looking tarballs. > > OK to apply? The section `Configuring @value{GDBN} for Release' should be deleted. It's been entirely superseeded by the chapter `Releasing GDB'. enjoy, Andrew > Michael C > > 2003-01-09 Michael Chastain > > * gdb.texinfo (Configuring @value{GDBN} for Release): Update > to "make -f src-release gdb.tar". > > Index: gdbint.texinfo > =================================================================== > RCS file: /cvs/src/src/gdb/doc/gdbint.texinfo,v > retrieving revision 1.115 > diff -u -r1.115 gdbint.texinfo > --- gdbint.texinfo 9 Jan 2003 18:46:02 -0000 1.115 > +++ gdbint.texinfo 9 Jan 2003 22:16:03 -0000 > @@ -5404,14 +5404,16 @@ > @file{libiberty}, and so on): > > @smallexample > -make -f Makefile.in gdb.tar.gz > +make -f src-release gdb.tar > +version=2003-01-09-cvs > +bzip2 -v -9 -c gdb-$version.tar > gdb-$version.tar.bz2 > +gzip -v -9 -c gdb-$version*.tar > gdb-$version.tar.gz > @end smallexample > > @noindent > This will properly configure, clean, rebuild any files that are > distributed pre-built (e.g. @file{c-exp.tab.c} or @file{refcard.ps}), > -and will then make a tarfile. (If the top level directory has already > -been configured, you can just do @code{make gdb.tar.gz} instead.) > +and will then make a tarfile. > > This procedure requires: > >