From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) by sourceware.org (Postfix) with ESMTP id B2A073857C76 for ; Fri, 21 Jan 2022 04:58:12 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B2A073857C76 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org Received: by smtp.gentoo.org (Postfix, from userid 559) id 56064343428; Fri, 21 Jan 2022 04:58:12 +0000 (UTC) From: Mike Frysinger To: newlib@sourceware.org Subject: [PATCH] newlib: drop redundant CFLAGS export Date: Thu, 20 Jan 2022 23:58:13 -0500 Message-Id: <20220121045813.22198-1-vapier@gentoo.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.6 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: newlib@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jan 2022 04:58:16 -0000 This is already handled by autotools for us automatically. --- newlib/configure | 2 -- newlib/configure.ac | 2 -- 2 files changed, 4 deletions(-) diff --git a/newlib/configure b/newlib/configure index 7025797c01a0..737975974c28 100755 --- a/newlib/configure +++ b/newlib/configure @@ -13417,8 +13417,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 31e4586cd674..59c950df23fe 100644 --- a/newlib/configure.ac +++ b/newlib/configure.ac @@ -739,7 +739,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 -- 2.34.1