From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25854 invoked by alias); 18 Nov 2002 12:58:28 -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 25792 invoked from network); 18 Nov 2002 12:58:25 -0000 Received: from unknown (HELO mailout6-0.nyroc.rr.com) (24.92.226.177) by sources.redhat.com with SMTP; 18 Nov 2002 12:58:25 -0000 Received: from doctormoo (syr-24-24-16-193.twcny.rr.com [24.24.16.193]) by mailout6-0.nyroc.rr.com (8.11.6/RoadRunner 1.20) with ESMTP id gAICwJk17248; Mon, 18 Nov 2002 07:58:19 -0500 (EST) Received: from neroden by doctormoo with local (Exim 3.36 #1 (Debian)) id 18DlTU-0000Xe-00; Mon, 18 Nov 2002 07:58:00 -0500 Date: Mon, 18 Nov 2002 04:58:00 -0000 To: gcc-patches@gcc.gnu.org Cc: dj@redhat.com, gdb-patches@sources.redhat.com, binutils@sources.redhat.com Subject: Toplevel patch: blow away dosrel Message-ID: <20021118125800.GA2083@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/msg00447.txt.bz2 "dosrel" seems to be a directory long gone, and its code is impeding my work. Diffed to apply after my last two patches, for 3.4bib, tested on i686-pc-linux-gnu. * configure.in: Remove references to "dosrel". * Makefile.tpl: Remove references to "dosrel". * Makefile.in: Regenerate. --- configure.in.1 2002-11-14 17:00:48.000000000 -0500 +++ configure.in 2002-11-18 07:52:14.000000000 -0500 @@ -197,12 +197,8 @@ # Configure extra directories which are host specific case "${host}" in - i[3456]86-*-go32*) - configdirs="$configdirs dosrel" ;; - i[3456]86-*-mingw32*) - configdirs="$configdirs dosrel" ;; *-cygwin*) - configdirs="$configdirs libtermcap dosrel" ;; + configdirs="$configdirs libtermcap" ;; esac # Remove more programs from consideration, based on the host or --- Makefile.in.2 2002-11-14 17:36:43.000000000 -0500 +++ Makefile.in 2002-11-18 07:50:39.000000000 -0500 @@ -106,8 +106,6 @@ INSTALL_SCRIPT = $(INSTALL) INSTALL_DATA = $(INSTALL) -m 644 -INSTALL_DOSREL = install-dosrel-fake - AS = @AS@ AR = @AR@ AR_FLAGS = rc @@ -1486,8 +1484,7 @@ install-gcc \ $(INSTALL_MODULES) \ $(INSTALL_TARGET_MODULES) \ - $(INSTALL_X11_MODULES) \ - $(INSTALL_DOSREL) + $(INSTALL_X11_MODULES) uninstall: @echo "the uninstall target is not supported in this tree" @@ -4103,23 +4100,6 @@ true; \ fi -# EXPERIMENTAL STUFF -# This rule is used to install the modules which use FLAGS_TO_PASS. -# To build a target install-X means to cd to X and make install. -.PHONY: install-dosrel -install-dosrel: installdirs info - @dir=`echo $@ | sed -e 's/install-//'`; \ - if [ -f ./$${dir}/Makefile ] ; then \ - r=`${PWD}`; export r; \ - s=`cd $(srcdir); ${PWD}`; export s; \ - $(SET_LIB_PATH) \ - (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \ - else \ - true; \ - fi - -install-dosrel-fake: - ALL_GCC = all-gcc ALL_GCC_C = $(ALL_GCC) all-target-newlib all-target-libgloss ALL_GCC_CXX = $(ALL_GCC_C) all-target-libstdc++-v3 --- Makefile.tpl.2 2002-11-14 17:36:50.000000000 -0500 +++ Makefile.tpl 2002-11-18 07:50:23.000000000 -0500 @@ -109,8 +109,6 @@ INSTALL_SCRIPT = $(INSTALL) INSTALL_DATA = $(INSTALL) -m 644 -INSTALL_DOSREL = install-dosrel-fake - AS = @AS@ AR = @AR@ AR_FLAGS = rc @@ -800,8 +798,7 @@ install-gcc \ $(INSTALL_MODULES) \ $(INSTALL_TARGET_MODULES) \ - $(INSTALL_X11_MODULES) \ - $(INSTALL_DOSREL) + $(INSTALL_X11_MODULES) uninstall: @echo "the uninstall target is not supported in this tree" @@ -1314,23 +1311,6 @@ true; \ fi -# EXPERIMENTAL STUFF -# This rule is used to install the modules which use FLAGS_TO_PASS. -# To build a target install-X means to cd to X and make install. -.PHONY: install-dosrel -install-dosrel: installdirs info - @dir=`echo $@ | sed -e 's/install-//'`; \ - if [ -f ./$${dir}/Makefile ] ; then \ - r=`${PWD}`; export r; \ - s=`cd $(srcdir); ${PWD}`; export s; \ - $(SET_LIB_PATH) \ - (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \ - else \ - true; \ - fi - -install-dosrel-fake: - ALL_GCC = all-gcc ALL_GCC_C = $(ALL_GCC) all-target-newlib all-target-libgloss ALL_GCC_CXX = $(ALL_GCC_C) all-target-libstdc++-v3