From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12944 invoked by alias); 3 Dec 2001 14:39:23 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 12863 invoked from network); 3 Dec 2001 14:39:22 -0000 Received: from unknown (HELO disaster.jaj.com) (209.64.26.3) by sources.redhat.com with SMTP; 3 Dec 2001 14:39:22 -0000 Received: (from pedwards@localhost) by disaster.jaj.com (8.9.3/8.9.3) id JAA16352; Mon, 3 Dec 2001 09:43:24 -0500 Date: Mon, 03 Dec 2001 06:39:00 -0000 From: Phil Edwards To: gcc@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [RFA] Patch for: Re: Why don't we provide a default INSTALL_SCRIPT in gcc/Makefile.in? Message-ID: <20011203094324.A16339@disaster.jaj.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-SW-Source: 2001-12/txt/msg00050.txt.bz2 Alexandre Oliva wrote: > On Nov 27, 2001, "H . J . Lu" wrote: > > This patch > > http://gcc.gnu.org/ml/gcc-bugs/2001-11/msg00221.html > > > uses INSTALL_SCRIPT without providing a default. As the result, I > > can no longer do > > > # cd gcc > > # make install > > Hmm, indeed. > > Would one of you please post a patch that copies the definition of: > > INSTALL_SCRIPT = @INSTALL@ > > from the top-level Makefile.in into gcc/Makefile.in? I just got bit by this same bug. So, scratching this itch: "cd gcc; make install" works now. Previously it would break on gccbug. Index: Makefile.in =================================================================== RCS file: /home/pme/Repositories/GCC/gcc/gcc/Makefile.in,v retrieving revision 1.796 diff -u -3 -r1.796 Makefile.in --- Makefile.in 30 Nov 2001 04:38:41 -0000 1.796 +++ Makefile.in 3 Dec 2001 14:35:27 -0000 @@ -121,6 +121,7 @@ # These permit overriding just for certain files. INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ +INSTALL_SCRIPT = @INSTALL@ MAKEINFO = @MAKEINFO@ MAKEINFOFLAGS = TEXI2DVI = texi2dvi