From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4300 invoked by alias); 24 May 2005 14:08: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 4058 invoked by uid 22791); 24 May 2005 14:08:31 -0000 Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Tue, 24 May 2005 14:08:31 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j4OE8UeY002825 for ; Tue, 24 May 2005 10:08:30 -0400 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j4OE8TO14497 for ; Tue, 24 May 2005 10:08:29 -0400 Received: from calimero.vinschen.de (vpn50-25.rdu.redhat.com [172.16.50.25]) by potter.sfbay.redhat.com (8.12.8/8.12.8) with ESMTP id j4OE8Ra8002655 for ; Tue, 24 May 2005 10:08:28 -0400 Received: by calimero.vinschen.de (Postfix, from userid 500) id CCF2E544001; Tue, 24 May 2005 16:08:27 +0200 (CEST) Date: Tue, 24 May 2005 14:22:00 -0000 From: Corinna Vinschen To: gdb-patches@sources.redhat.com Subject: [RFA] sim/common/Make-common.in: Correct dependency for LIBDEPS Message-ID: <20050524140827.GA13850@calimero.vinschen.de> Reply-To: gdb-patches@sources.redhat.com Mail-Followup-To: gdb-patches@sources.redhat.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2i X-SW-Source: 2005-05/txt/msg00529.txt.bz2 Hi, LIBDEPS in sim/common/Make-common.in defines the dependencies used to figure out what has to be build, while EXTRA_LIBS defines what libraries are used for building. The same difference is made for INTLDEPS vs. INTLLIBS. Nevertheless, LIBDEPS depends on $(INTLLIBS) instead of $(INTLDEPS), which would be the correct dependency. The below patch fixes that. Ok to apply? Corinna * Make-common.in (LIBDEPS): Correctly use INTLDEPS for dependency check. Index: sim/common/Make-common.in =================================================================== RCS file: /cvs/src/src/sim/common/Make-common.in,v retrieving revision 1.23 diff -u -p -r1.23 Make-common.in --- sim/common/Make-common.in 18 May 2005 01:55:46 -0000 1.23 +++ sim/common/Make-common.in 24 May 2005 14:07:57 -0000 @@ -241,7 +241,7 @@ OPCODES_LIB = ../../opcodes/libopcodes.a INTLLIBS = @INTLLIBS@ INTLDEPS = @INTLDEPS@ CONFIG_LIBS = @LIBS@ -LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(INTLLIBS) $(LIBIBERTY_LIB) \ +LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(INTLDEPS) $(LIBIBERTY_LIB) \ $(SIM_EXTRA_LIBDEPS) EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(INTLLIBS) $(LIBIBERTY_LIB) \ $(CONFIG_LIBS) $(SIM_EXTRA_LIBS) -- Corinna Vinschen Cygwin Project Co-Leader Red Hat, Inc.