diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-10-31 18:16:14 +0545 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-11-03 12:51:21 +0545 |
commit | ca7b34c5bead0acd3c93670d849081da04f5bcd9 (patch) | |
tree | 1f2665e931965e5176c6ec179ea650de4b79e5db /sim | |
parent | ae1c45ead6b60ef0fd338bbeb6a4c5e5808c6e6a (diff) | |
download | gdb-ca7b34c5bead0acd3c93670d849081da04f5bcd9.zip gdb-ca7b34c5bead0acd3c93670d849081da04f5bcd9.tar.gz gdb-ca7b34c5bead0acd3c93670d849081da04f5bcd9.tar.bz2 |
sim: common: remove unused include paths
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.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/common/Make-common.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index b07ec96..094f741 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -206,10 +206,10 @@ CONFIG_CFLAGS = \ $(SIM_WARN_CFLAGS) \ $(SIM_WERROR_CFLAGS) \ $(SIM_HARDWARE) -CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \ - -I../../include -I$(srcroot)/include \ +CSEARCH = -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 = $(CONFIG_CFLAGS) $(CSEARCH) $(INCGNU) $(SIM_EXTRA_CFLAGS) $(CFLAGS) |