From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13427 invoked by alias); 19 Nov 2002 07:25:56 -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 13397 invoked from network); 19 Nov 2002 07:25:55 -0000 Received: from unknown (HELO mailout5-0.nyroc.rr.com) (24.92.226.169) by sources.redhat.com with SMTP; 19 Nov 2002 07:25:55 -0000 Received: from doctormoo (syr-24-24-16-193.twcny.rr.com [24.24.16.193]) by mailout5-0.nyroc.rr.com (8.11.6/RoadRunner 1.20) with ESMTP id gAJ7PkF03441; Tue, 19 Nov 2002 02:25:50 -0500 (EST) Received: from neroden by doctormoo with local (Exim 3.36 #1 (Debian)) id 18E2lD-0001t4-00; Tue, 19 Nov 2002 02:25:27 -0500 Date: Mon, 18 Nov 2002 23:25:00 -0000 To: gcc-patches@gcc.gnu.org, binutils@sources.redhat.com, gdb-patches@sources.redhat.com, dj@redhat.com Subject: (toplevel patch) Remove 'vault' targets Message-ID: <20021119072527.GA7255@doctormoo> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i From: Nathanael Nerode X-SW-Source: 2002-11/txt/msg00484.txt.bz2 The 'vault' targets appear to be long since abandoned. * Makefile.tpl: Remove 'vault' targets. * Makefile.in: Regenerate. Index: Makefile.in =================================================================== RCS file: /cvs/gcc/gcc/Makefile.in,v retrieving revision 1.111.4.14 diff -u -r1.111.4.14 Makefile.in --- Makefile.in 19 Nov 2002 06:56:25 -0000 1.111.4.14 +++ Makefile.in 19 Nov 2002 07:17:43 -0000 @@ -1195,28 +1195,13 @@ # Installation targets. -.PHONY: install uninstall source-vault binary-vault vault-install +.PHONY: install uninstall install: installdirs @install_host_modules@ @install_target_modules@ install-target: @install_target_modules@ uninstall: @echo "the uninstall target is not supported in this tree" - -source-vault: - $(MAKE) -f ./release/Build-A-Release \ - host=$(host_alias) source-vault - -binary-vault: - $(MAKE) -f ./release/Build-A-Release \ - host=$(host_alias) target=$(target_alias) - -vault-install: - @if [ -f ./release/vault-install ] ; then \ - ./release/vault-install $(host_alias) $(target_alias) ; \ - else \ - true ; \ - fi .PHONY: install.all install.all: install-no-fixedincludes Index: Makefile.tpl =================================================================== RCS file: /cvs/gcc/gcc/Makefile.tpl,v retrieving revision 1.5.2.12 diff -u -r1.5.2.12 Makefile.tpl --- Makefile.tpl 19 Nov 2002 06:56:25 -0000 1.5.2.12 +++ Makefile.tpl 19 Nov 2002 07:17:45 -0000 @@ -738,28 +738,13 @@ # Installation targets. -.PHONY: install uninstall source-vault binary-vault vault-install +.PHONY: install uninstall install: installdirs @install_host_modules@ @install_target_modules@ install-target: @install_target_modules@ uninstall: @echo "the uninstall target is not supported in this tree" - -source-vault: - $(MAKE) -f ./release/Build-A-Release \ - host=$(host_alias) source-vault - -binary-vault: - $(MAKE) -f ./release/Build-A-Release \ - host=$(host_alias) target=$(target_alias) - -vault-install: - @if [ -f ./release/vault-install ] ; then \ - ./release/vault-install $(host_alias) $(target_alias) ; \ - else \ - true ; \ - fi .PHONY: install.all install.all: install-no-fixedincludes