From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6147 invoked by alias); 22 Nov 2002 20:37:38 -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 6140 invoked from network); 22 Nov 2002 20:37:37 -0000 Received: from unknown (HELO zenia.red-bean.com) (66.244.67.22) by sources.redhat.com with SMTP; 22 Nov 2002 20:37:37 -0000 Received: (from jimb@localhost) by zenia.red-bean.com (8.11.6/8.11.6) id gAMKKZo28503; Fri, 22 Nov 2002 15:20:35 -0500 To: Elena Zannoni Cc: gdb-patches@sources.redhat.com Subject: Re: [RFA] doc/Makefile.in install References: <15838.36534.883345.847460@localhost.redhat.com> From: Jim Blandy Date: Fri, 22 Nov 2002 12:37:00 -0000 In-Reply-To: <15838.36534.883345.847460@localhost.redhat.com> Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2.92 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-11/txt/msg00558.txt.bz2 Elena Zannoni writes: > 'make install' in the doc directory wasn't doing anything useful.... > > Is this ok? (lifted from bfd/doc's makefile) > > Elena > > > 2002-11-22 Elena Zannoni > > * Makefile.in (install): Make install do some real work. > > Index: Makefile.in > =================================================================== > RCS file: /cvs/uberbaum/gdb/doc/Makefile.in,v > retrieving revision 1.23 > diff -u -p -r1.23 Makefile.in > --- Makefile.in 20 Nov 2002 00:47:59 -0000 1.23 > +++ Makefile.in 22 Nov 2002 20:10:08 -0000 > @@ -134,7 +134,7 @@ STABS_DOC_FILES = \ > #### Host, target, and site specific Makefile fragments come in here. > ### > > -all install: > +all: > > info: $(INFO_DEPS) > dvi: gdb.dvi gdbint.dvi stabs.dvi refcard.dvi > @@ -432,3 +432,4 @@ distclean: clean > maintainer-clean realclean: distclean > rm -f GDBvn.texi *.info* *.dvi *.ps *.html *.pdf > > +install: install-info I think, at some point in the distant past, it was controversial whether packages should install their info files by default. I think that was back when disks were much smaller than they are now. Nowadays most packages install their info by default, so there's no reason for GDB not to do so as well.