This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: [Fwd: list of installed files]
- To: Craig Rodrigues <rodrigc at mediaone dot net>
- Subject: Re: [Fwd: list of installed files]
- From: Rod Stewart <stewart at dystopia dot lab43 dot org>
- Date: Sun, 25 Feb 2001 16:09:49 -0500 (EST)
- cc: Harry <lister3 at mindspring dot com>, <gcc at gcc dot gnu dot org>
On Fri, 23 Feb 2001, Craig Rodrigues wrote:
> On Fri, Feb 23, 2001 at 03:52:52PM -0500, Harry wrote:
> > I successfully built and installed gcc-2.95.2, but I have a
> > question. How do I get a list of every file that was installed? I
> > would like to build an RPM of this package because I plan to upgrade to
>
> I don't think that you can easily do this after you have done
> make install...so you basically need to keep track of the files
> yourself.
Sure you can, install into a temporary location
make install prefix=/var/tmp/my-gcc/
will install all the files in above directory, then you can make you list,
tar file or what not. This is what an rpm spec file will do during
%install.
-Rms