From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2179 invoked by alias); 12 Feb 2011 13:06:19 -0000 Received: (qmail 2167 invoked by uid 22791); 12 Feb 2011 13:06:18 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 12 Feb 2011 13:06:14 +0000 Received: (qmail 21162 invoked from network); 12 Feb 2011 13:06:12 -0000 Received: from unknown (HELO ?192.168.0.101?) (yao@127.0.0.2) by mail.codesourcery.com with ESMTPA; 12 Feb 2011 13:06:12 -0000 Message-ID: <4D5685BF.5000107@codesourcery.com> Date: Sat, 12 Feb 2011 13:06:00 -0000 From: Yao Qi User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.13) Gecko/20101208 Lightning/1.0b2 Thunderbird/3.1.7 MIME-Version: 1.0 To: gdb-patches@sourceware.org Subject: Re: [rfa/rfc] Build libcommon.a for gdb and gdbserver References: <4D30E23F.3080103@codesourcery.com> <4D34C9DE.3040603@codesourcery.com> <4D375F44.70504@codesourcery.com> In-Reply-To: <4D375F44.70504@codesourcery.com> Content-Type: multipart/mixed; boundary="------------020706080401050207050505" X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2011-02/txt/msg00238.txt.bz2 This is a multi-part message in MIME format. --------------020706080401050207050505 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Content-length: 446 On 01/20/2011 06:01 AM, Yao Qi wrote: > @@ -873,13 +878,13 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \ > TSOBS = inflow.o > > SUBDIRS = doc @subdirs@ data-directory > -CLEANDIRS = $(SUBDIRS) gnulib > +CLEANDIRS = $(SUBDIRS) gnulib common This chunk of patch should be reverted, because `common' is added in SUBDIRS via 'AC_CONFIG_SUBDIRS(common)' in configure.ac, so there are two `common' in CLEANDIRS. Applied. -- Yao (齐尧) --------------020706080401050207050505 Content-Type: text/x-patch; name="dup-common.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="dup-common.patch" Content-length: 656 2011-02-12 Yao Qi * Makefile.in (CLEANDIRS): Remove duplicated common dir. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.1150 diff -u -r1.1150 Makefile.in --- Makefile.in 11 Feb 2011 09:57:24 -0000 1.1150 +++ Makefile.in 12 Feb 2011 11:00:06 -0000 @@ -902,7 +902,7 @@ TSOBS = inflow.o SUBDIRS = doc @subdirs@ data-directory -CLEANDIRS = $(SUBDIRS) gnulib common +CLEANDIRS = $(SUBDIRS) gnulib # List of subdirectories in the build tree that must exist. # This is used to force build failures in existing trees when --------------020706080401050207050505--