From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27787 invoked by alias); 31 Oct 2003 08:43:49 -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 27761 invoked from network); 31 Oct 2003 08:43:48 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 31 Oct 2003 08:43:48 -0000 Received: from int-mx2.corp.redhat.com (nat-pool-rdu-dmz.redhat.com [172.16.52.200] (may be forged)) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id h9V8hlM11571 for ; Fri, 31 Oct 2003 03:43:47 -0500 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx2.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h9V8hka23147 for ; Fri, 31 Oct 2003 03:43:46 -0500 Received: from cygbert.vinschen.de (vpn50-26.rdu.redhat.com [172.16.50.26]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id h9V8hjJ21086 for ; Fri, 31 Oct 2003 00:43:45 -0800 Received: by cygbert.vinschen.de (Postfix, from userid 500) id 633DC5809A; Fri, 31 Oct 2003 09:43:39 +0100 (CET) Date: Fri, 31 Oct 2003 08:43:00 -0000 From: Corinna Vinschen To: bug-dejagnu@gnu.org, gdb-patches@sources.redhat.com Subject: [PATCH] dejagnu/Makefile.in: Add empty targets install-info and uninstall-info Message-ID: <20031031084339.GA2064@cygbert.vinschen.de> Mail-Followup-To: bug-dejagnu@gnu.org, gdb-patches@sources.redhat.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i X-SW-Source: 2003-10/txt/msg00868.txt.bz2 Hi, The below patch adds two empty targets to Makefile.am, install-info and uninstall-info. The reason for that patch is, that it's not possible to call `make install-info' from a top level build dir, because the install process fails in dejagnu with the message make: *** No rule to make target `install-info'. Stop. The below patch allows that now, just doing nothing in the dejagnu subdir for now. Thanks for considering, Corinna * Makefile.am: Add empty install-info and uninstall-info rules. * Makefile.in: Regenerate. Index: Makefile.am =================================================================== RCS file: /cvs/cvsfiles/gnupro/dejagnu/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- Makefile.am 16 Feb 2003 23:22:45 -0000 1.4 +++ Makefile.am 15 May 2003 16:24:32 -0000 1.5 @@ -119,6 +119,10 @@ baseboards_files = $(srcdir)/baseboards/ config_dest = $(DESTDIR)$(pkgdatadir)/config config_files = $(srcdir)/config/README $(srcdir)/config/*.exp +install-info: + +uninstall-info: + install-data-local: $(mkinstalldirs) $(lib_dest) $(includedir) for f in $(lib_files); do \ Index: Makefile.in =================================================================== RCS file: /cvs/cvsfiles/gnupro/dejagnu/Makefile.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- Makefile.in 16 Feb 2003 23:22:45 -0000 1.4 +++ Makefile.in 15 May 2003 16:24:32 -0000 1.5 @@ -513,6 +513,10 @@ dist-hook: rpmspec overview.html overvie -cp -fr doc/overview.ps $(distdir)/doc/ -cp -fr doc/overview.pdf $(distdir)/doc/ +install-info: + +uninstall-info: + install-data-local: $(mkinstalldirs) $(lib_dest) $(includedir) for f in $(lib_files); do \ -- Corinna Vinschen Cygwin Developer Red Hat, Inc.