From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) by sourceware.org (Postfix) with ESMTP id 6DE7A385C418 for ; Tue, 1 Feb 2022 23:15:45 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 6DE7A385C418 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 03741343091; Tue, 1 Feb 2022 23:15:44 +0000 (UTC) From: Mike Frysinger To: newlib@sourceware.org Subject: [PATCH/committed] newlib: delete unused iconvdata subdir config Date: Tue, 1 Feb 2022 18:15:42 -0500 Message-Id: <20220201231542.30207-1-vapier@gentoo.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <29053602-0fbf-a793-5513-1a249d30e041@yahoo.de> References: <29053602-0fbf-a793-5513-1a249d30e041@yahoo.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.3 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE 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: Tue, 01 Feb 2022 23:15:49 -0000 Since commit dcbff9eea71d06454e7d55d6b7e72672c0987d6d ("newlib: merge iconvdata into top-level Makefile"), there is no configure script in the iconvdata/ subdir, so this call will just issue a warning and not do anything useful. Punt it. --- newlib/configure | 9 +++------ newlib/configure.ac | 1 - 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/newlib/configure b/newlib/configure index 974f4086c100..65b93630315e 100755 --- a/newlib/configure +++ b/newlib/configure @@ -871,8 +871,7 @@ LIBS CPPFLAGS CPP' ac_subdirs_all='libc -libm -iconvdata' +libm' # Initialize some variables set by options. ac_init_help= @@ -12009,7 +12008,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12012 "configure" +#line 12011 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12115,7 +12114,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12118 "configure" +#line 12117 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12427,8 +12426,6 @@ fi HAVE_ICONVDATA=false case $host in i[34567]86-pc-linux-*) - subdirs="$subdirs iconvdata" - HAVE_ICONVDATA=true ;; esac diff --git a/newlib/configure.ac b/newlib/configure.ac index 5c38fc5b5a7b..c164e5a6494f 100644 --- a/newlib/configure.ac +++ b/newlib/configure.ac @@ -350,7 +350,6 @@ AM_CONDITIONAL(HAVE_MULTISUBDIR, test x$have_multisubdir = xyes) HAVE_ICONVDATA=false case $host in i[[34567]]86-pc-linux-*) - AC_CONFIG_SUBDIRS(iconvdata) HAVE_ICONVDATA=true ;; esac -- 2.34.1