diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-12-14 03:20:32 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2023-01-11 01:00:15 -0500 |
commit | 26f9cfd7a8034919448ab4604a9c9d39c04b8d19 (patch) | |
tree | 8abcc623eff0b7a587f1563bd23611675deb8743 /libgloss/Makefile.in | |
parent | 31e5ce10db46bf8c15d78b2546553db45eb33141 (diff) | |
download | newlib-26f9cfd7a8034919448ab4604a9c9d39c04b8d19.zip newlib-26f9cfd7a8034919448ab4604a9c9d39c04b8d19.tar.gz newlib-26f9cfd7a8034919448ab4604a9c9d39c04b8d19.tar.bz2 |
libgloss: arm: break newlib dependency
The libgloss port has been reaching back into newlib internals for a
single header whose contents have been frozen for almost a decade.
To break this backwards libgloss->newlib dependency, move the acle
header to the srcroot include/ so everyone can use the same copy.
Diffstat (limited to 'libgloss/Makefile.in')
-rw-r--r-- | libgloss/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libgloss/Makefile.in b/libgloss/Makefile.in index cd60857..77bb9b0 100644 --- a/libgloss/Makefile.in +++ b/libgloss/Makefile.in @@ -657,6 +657,7 @@ info_TEXINFOS = $(am__append_1) CLEANFILES = $(am__append_4) PHONY = SUBDIRS = @subdirs@ . +srcroot = $(top_srcdir)/.. tooldir = $(exec_prefix)/$(target_alias) multilibtooldir = $(tooldir)/lib$(MULTISUBDIR) multilibtool_DATA = $(am__append_3) $(am__append_7) $(am__append_9) \ @@ -669,6 +670,7 @@ includetooldir = $(tooldir)/include includetool_DATA = $(am__append_10) includesystooldir = $(tooldir)/include/sys includesystool_DATA = $(am__append_11) +AM_CPPFLAGS = -idirafter $(srcroot)/include # A fake library so automake will generate rules for plain objects that we want # to install (e.g. our crt0.o objects). |