From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17779 invoked by alias); 23 Jan 2019 17:30:00 -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 17414 invoked by uid 89); 23 Jan 2019 17:30:00 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=sorting, enforced X-HELO: gateway31.websitewelcome.com Received: from gateway31.websitewelcome.com (HELO gateway31.websitewelcome.com) (192.185.144.96) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 23 Jan 2019 17:29:58 +0000 Received: from cm14.websitewelcome.com (cm14.websitewelcome.com [100.42.49.7]) by gateway31.websitewelcome.com (Postfix) with ESMTP id CF30CDA0CB9 for ; Wed, 23 Jan 2019 11:29:56 -0600 (CST) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id mMLcgFIvR2qH7mMLcgrLMs; Wed, 23 Jan 2019 11:29:56 -0600 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=Message-Id:Date:Subject:To:From:Sender:Reply-To:Cc:MIME-Version :Content-Type:Content-Transfer-Encoding:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=uW7PcJK92fVsrD+qbzZg4O41PDW76os+u1zXjbHOV1U=; b=Tb/O6WLP0tgmfD3BRNA5TNHp31 nAUWx/fr9QMb4J+pwXZtMwaevW4YKTKj8BMrxtuKC98M5XE/h+sBbmDaLEptiVzFwB5PzRIETGZ2t ZCKtFgM89APglAC0TGYIvGwpq; Received: from 75-166-72-210.hlrn.qwest.net ([75.166.72.210]:37850 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.91) (envelope-from ) id 1gmMLc-001oW4-KN for gdb-patches@sourceware.org; Wed, 23 Jan 2019 11:29:56 -0600 From: Tom Tromey To: gdb-patches@sourceware.org Subject: [PATCH 0/3] Normalize common includes Date: Wed, 23 Jan 2019 17:30:00 -0000 Message-Id: <20190123172954.24421-1-tom@tromey.com> X-SW-Source: 2019-01/txt/msg00526.txt.bz2 I think the norm in gdb is to include files from common using "common/filename.h" -- but this is not enforced, because the Makefiles provide -I$(srcdir)/common. This series rewrites gdb to use the norm everywhere, and then removes the -I options. The bulk of the change was done by script. Let me know what you think. It would be better for this to go in (if it goes in) before the include sorting patch. Tom