From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1521) id 61F993858D20; Thu, 3 Nov 2022 08:20:54 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 61F993858D20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1667463654; bh=SH8KwYQXB9t3DnTUqxUua3tCrqsiXQadgzFyaa4bkrE=; h=From:To:Subject:Date:From; b=JDPub/MJcTK5Vuorg/fWAQJbLx6S5Mfl0CDz3Oa13N7HMgsbTxFuSArvi7thbL0Ho KVCYmd5JF2o+QA/0M4u51CZFN+V0N0C2JDzGDVB+Hyp2FALRBGW0NEBsQkeoQSTJaF SoHMtjOdm5+kQUCi1KKmotQCcPFpI9PG78sj6l6A= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Frysinger To: gdb-cvs@sourceware.org Subject: [binutils-gdb] sim: common: remove unused include paths X-Act-Checkin: binutils-gdb X-Git-Author: Mike Frysinger X-Git-Refname: refs/heads/master X-Git-Oldrev: ae1c45ead6b60ef0fd338bbeb6a4c5e5808c6e6a X-Git-Newrev: ca7b34c5bead0acd3c93670d849081da04f5bcd9 Message-Id: <20221103082054.61F993858D20@sourceware.org> Date: Thu, 3 Nov 2022 08:20:54 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3Dca7b34c5bead= 0acd3c93670d849081da04f5bcd9 commit ca7b34c5bead0acd3c93670d849081da04f5bcd9 Author: Mike Frysinger Date: Mon Oct 31 18:16:14 2022 +0545 sim: common: remove unused include paths =20 A bunch of these paths don't include any headers, and most likely never will, so there's no real need to keep them. This will let us harmonize paths with the top-level Makefile more easily, which will in turn make it easier to move more compile steps there. Diff: --- sim/common/Make-common.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index b07ec96e147..094f7412b23 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -206,10 +206,10 @@ CONFIG_CFLAGS =3D \ $(SIM_WARN_CFLAGS) \ $(SIM_WERROR_CFLAGS) \ $(SIM_HARDWARE) -CSEARCH =3D -I. -I$(srcdir) -I../common -I$(srccom) \ - -I../../include -I$(srcroot)/include \ +CSEARCH =3D -I. -I$(srcdir) -I$(srccom) \ + -I$(srcroot)/include \ -I../../bfd -I$(srcroot)/bfd \ - -I../../opcodes -I$(srcroot)/opcodes \ + -I$(srcroot)/opcodes \ -I../.. \ $(INTL_CFLAGS) ALL_CFLAGS =3D $(CONFIG_CFLAGS) $(CSEARCH) $(INCGNU) $(SIM_EXTRA_CFLAGS) $= (CFLAGS)