From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 122989 invoked by alias); 5 May 2017 04:31:26 -0000 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 Received: (qmail 121763 invoked by uid 89); 5 May 2017 04:29:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 05 May 2017 04:29:51 +0000 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id A97B93D956; Fri, 5 May 2017 04:29:52 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com A97B93D956 Authentication-Results: ext-mx06.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx06.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=sergiodj@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com A97B93D956 Received: from psique.yyz.redhat.com (unused-10-15-17-193.yyz.redhat.com [10.15.17.193]) by smtp.corp.redhat.com (Postfix) with ESMTP id 3F3DC5DD67; Fri, 5 May 2017 04:29:52 +0000 (UTC) From: Sergio Durigan Junior To: GDB Patches Cc: Pedro Alves , Simon Marchi , John Baldwin Subject: [PATCH v3 0/2] Introduce gdb/configure.nat Date: Fri, 05 May 2017 04:31:00 -0000 Message-Id: <20170505042951.32097-1-sergiodj@redhat.com> In-Reply-To: <20170425202309.15771-1-sergiodj@redhat.com> References: <20170425202309.15771-1-sergiodj@redhat.com> X-IsSubscribed: yes X-SW-Source: 2017-05/txt/msg00136.txt.bz2 Hi, Hopefully last iteration addressing all the comments made by Pedro and John. Changes from v2: - Fixed stale comments on Makefile.in. - s/NAT_EXTRA_FRAGS_FILE/nat_extra_makefile_frag/. - Fixed typos on i386gnu-extra.mh. - Move NAT_GENERATED_FILES to i386gnu-extra.mh. - Fixed nits on comments on configure.{ac,nat}. - Updated ChangeLog entries. Thanks, Sergio.