From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9257 invoked by alias); 1 Mar 2011 07:03:15 -0000 Received: (qmail 9249 invoked by uid 22791); 1 Mar 2011 07:03:14 -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; Tue, 01 Mar 2011 07:03:10 +0000 Received: (qmail 12822 invoked from network); 1 Mar 2011 07:03:08 -0000 Received: from unknown (HELO ?192.168.0.101?) (yao@127.0.0.2) by mail.codesourcery.com with ESMTPA; 1 Mar 2011 07:03:08 -0000 Message-ID: <4D6C9A29.3000701@codesourcery.com> Date: Tue, 01 Mar 2011 07:03: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: Remove make gnu-ism in gdbserver Content-Type: multipart/mixed; boundary="------------000605060505050902070507" 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-03/txt/msg00021.txt.bz2 This is a multi-part message in MIME format. --------------000605060505050902070507 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Content-length: 385 On 03/01/2011 01:46 PM, Yao Qi wrote: > 3. GNU make feature, > http://sourceware.org/ml/gdb-patches/2011-02/msg00489.html > Since we decide not to require GNU make, I'll remove its GNU make feature. This patch is to fix this problem above. This patch should be applied top of my "make-clean fix" patch (http://sourceware.org/ml/gdb-patches/2011-03/msg00020.html). -- Yao (齐尧) --------------000605060505050902070507 Content-Type: text/x-patch; name="remove-gdbserver-gnu-0301.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="remove-gdbserver-gnu-0301.patch" Content-length: 581 gdb/gdbserver/ * Makefile.in: Remove GNU make feature --direcotry. diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in index d27c942..14ee91f 100644 --- a/gdb/gdbserver/Makefile.in +++ b/gdb/gdbserver/Makefile.in @@ -200,7 +200,7 @@ FLAGS_TO_PASS = \ all: gdbserver$(EXEEXT) gdbreplay$(EXEEXT) $(extra_libraries) $(LIBCOMMON): $(LIBCOMMON_DIR)/Makefile - @$(MAKE) $(FLAGS_TO_PASS) DO=all --directory=common + @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=common subdir_do common/Makefile: configure-common config.status CONFIG_FILES="common/Makefile" \ --------------000605060505050902070507--