diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-01-20 23:57:43 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-01-21 17:27:55 -0500 |
commit | 4af35511360b00157ce6829ed0530b63d284dff8 (patch) | |
tree | 0dc3e19e36d1c7f05b4b7bcde750f8aba3c7e97b | |
parent | f159663b08f532eb77147abc6f8a65e4c5854773 (diff) | |
download | newlib-4af35511360b00157ce6829ed0530b63d284dff8.zip newlib-4af35511360b00157ce6829ed0530b63d284dff8.tar.gz newlib-4af35511360b00157ce6829ed0530b63d284dff8.tar.bz2 |
newlib: drop redundant CFLAGS export
This is already handled by autotools for us automatically. You can
tell as the generated output is exactly the same other than deleting
a few blank lines.
-rwxr-xr-x | newlib/configure | 2 | ||||
-rw-r--r-- | newlib/configure.ac | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/newlib/configure b/newlib/configure index 2aa2970..7fb49d7 100755 --- a/newlib/configure +++ b/newlib/configure @@ -13425,8 +13425,6 @@ $as_echo "#define _LDBL_EQ_DBL 1" >>confdefs.h fi - - ac_config_files="$ac_config_files Makefile" cat >confcache <<\_ACEOF diff --git a/newlib/configure.ac b/newlib/configure.ac index 8878e08..93dde7f 100644 --- a/newlib/configure.ac +++ b/newlib/configure.ac @@ -712,7 +712,5 @@ if test $newlib_cv_ldbl_eq_dbl = yes; then AC_DEFINE(_LDBL_EQ_DBL, 1, [Define if the platform long double type is equal to double.]) fi -AC_SUBST(CFLAGS) - AC_CONFIG_FILES([Makefile]) AC_OUTPUT |