From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) by sourceware.org (Postfix) with ESMTP id D26983858C1F for ; Thu, 10 Feb 2022 08:51:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org D26983858C1F 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 4EBBC34306A; Thu, 10 Feb 2022 08:51:30 +0000 (UTC) From: Mike Frysinger To: newlib@sourceware.org Subject: [PATCH 2/5] newlib: phoenix: drop missing machine subdirs Date: Thu, 10 Feb 2022 03:51:23 -0500 Message-Id: <20220210085126.21023-3-vapier@gentoo.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220210085126.21023-1-vapier@gentoo.org> References: <20220210085126.21023-1-vapier@gentoo.org> 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, 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: Thu, 10 Feb 2022 08:51:33 -0000 These were never added to the tree, and as we transition from autoconf to automake, it really wants the latter subdirs to always exist. These don't, so delete the logic. --- newlib/libc/sys/phoenix/machine/configure | 11 +---------- newlib/libc/sys/phoenix/machine/configure.ac | 3 --- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/newlib/libc/sys/phoenix/machine/configure.ac b/newlib/libc/sys/phoenix/machine/configure.ac index 05dd0f8e48b6..972ffc9c86ec 100644 --- a/newlib/libc/sys/phoenix/machine/configure.ac +++ b/newlib/libc/sys/phoenix/machine/configure.ac @@ -12,9 +12,6 @@ NEWLIB_CONFIGURE(../../../..) if test -n "${machine_dir}"; then case ${machine_dir} in arm) AC_CONFIG_SUBDIRS(arm) ;; - esirisc) AC_CONFIG_SUBDIRS(esirisc) ;; - i386) AC_CONFIG_SUBDIRS(i386) ;; - powerpc) AC_CONFIG_SUBDIRS(powerpc) ;; esac; fi -- 2.34.1