diff options
author | Mike Frysinger <vapier@gentoo.org> | 2023-01-01 10:07:28 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2023-01-01 23:17:07 -0500 |
commit | c217e3d54e17e2dcf6b02d109e219a1718ac130e (patch) | |
tree | 934ee7e632982cf1792392ea4542f2fd979cc20c /sim/common | |
parent | 60a1031181a972a199fc64abddbdf9bcac20193a (diff) | |
download | fsf-binutils-gdb-c217e3d54e17e2dcf6b02d109e219a1718ac130e.zip fsf-binutils-gdb-c217e3d54e17e2dcf6b02d109e219a1718ac130e.tar.gz fsf-binutils-gdb-c217e3d54e17e2dcf6b02d109e219a1718ac130e.tar.bz2 |
sim: replace -I$srcroot/bfd include with -I$srcroot
Clean up includes a bit by making ports include bfd/ headers
explicitly. This matches other projects, and makes it more clear
where these headers are coming from.
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/Make-common.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 2aeb97d..ab9b3a3 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -118,7 +118,7 @@ CONFIG_CFLAGS = \ $(SIM_WERROR_CFLAGS) CSEARCH = -I. -I$(srcdir) -I$(srccom) \ -I$(srcroot)/include \ - -I../../bfd -I$(srcroot)/bfd \ + -I../../bfd \ -I$(srcroot) \ -I../.. ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(INCGNU) $(SIM_EXTRA_CFLAGS) $(CFLAGS) |