diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-02-14 00:52:55 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-02-15 20:02:51 -0500 |
commit | 907764ebec6303ed73399ab908eed73e4978a1ad (patch) | |
tree | 2117cb8493b5f2f400d59bbc502ca393fe3b378a /newlib/libm/math/Makefile.in | |
parent | df5808b77122e1bb5e4517e5dbd7f8e4093108c2 (diff) | |
download | newlib-907764ebec6303ed73399ab908eed73e4978a1ad.zip newlib-907764ebec6303ed73399ab908eed73e4978a1ad.tar.gz newlib-907764ebec6303ed73399ab908eed73e4978a1ad.tar.bz2 |
newlib/libgloss: drop unused $(CROSS_CFLAGS)
This is used in a bunch of places, but nowhere is it ever set, and
nowhere can I find any documentation, nor can I find any other project
using it. So delete the flags to simplify.
Diffstat (limited to 'newlib/libm/math/Makefile.in')
-rw-r--r-- | newlib/libm/math/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libm/math/Makefile.in b/newlib/libm/math/Makefile.in index 89ad3a7..529c51a 100644 --- a/newlib/libm/math/Makefile.in +++ b/newlib/libm/math/Makefile.in @@ -358,7 +358,7 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -AM_CPPFLAGS = -I$(srcdir)/../common $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) +AM_CPPFLAGS = -I$(srcdir)/../common $(NEWLIB_CFLAGS) $(TARGET_CFLAGS) src = k_standard.c k_rem_pio2.c \ k_cos.c k_sin.c k_tan.c \ e_acos.c e_acosh.c e_asin.c e_atan2.c \ |