From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1521) id 36E573858C39; Wed, 16 Feb 2022 00:59:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 36E573858C39 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Frysinger To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] newlib: phoenix: drop missing machine subdirs X-Act-Checkin: newlib-cygwin X-Git-Author: Mike Frysinger X-Git-Refname: refs/heads/master X-Git-Oldrev: 5a6bf1749faeadc42f29e4f4be8defc957e84484 X-Git-Newrev: 16c12761fdb9510d179297a1c676ceb9971bbc32 Message-Id: <20220216005928.36E573858C39@sourceware.org> Date: Wed, 16 Feb 2022 00:59:28 +0000 (GMT) X-BeenThere: newlib-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib GIT logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Feb 2022 00:59:28 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D16c12761fdb= 9510d179297a1c676ceb9971bbc32 commit 16c12761fdb9510d179297a1c676ceb9971bbc32 Author: Mike Frysinger Date: Thu Feb 10 03:32:51 2022 -0500 newlib: phoenix: drop missing machine subdirs =20 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. Diff: --- 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 b/newlib/libc/sys/ph= oenix/machine/configure index 8d7fde54d..c18e26eb5 100644 --- a/newlib/libc/sys/phoenix/machine/configure +++ b/newlib/libc/sys/phoenix/machine/configure @@ -727,10 +727,7 @@ CPPFLAGS CPP CCAS CCASFLAGS' -ac_subdirs_all=3D'arm -esirisc -i386 -powerpc' +ac_subdirs_all=3D'arm' =20 # Initialize some variables set by options. ac_init_help=3D @@ -4269,12 +4266,6 @@ if test -n "${machine_dir}"; then arm) =20 subdirs=3D"$subdirs arm" - ;; - esirisc) subdirs=3D"$subdirs esirisc" - ;; - i386) subdirs=3D"$subdirs i386" - ;; - powerpc) subdirs=3D"$subdirs powerpc" ;; esac; fi diff --git a/newlib/libc/sys/phoenix/machine/configure.ac b/newlib/libc/sys= /phoenix/machine/configure.ac index 05dd0f8e4..972ffc9c8 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