Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-02-10 11:32:51 +0300
committerMike Frysinger <vapier@gentoo.org>2022-02-16 03:59:08 +0300
commit16c12761fdb9510d179297a1c676ceb9971bbc32 (patch)
tree0773e6c34008fdd3c71db00bf371979506818c3d /newlib
parent5a6bf1749faeadc42f29e4f4be8defc957e84484 (diff)
newlib: phoenix: drop missing machine subdirs
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.
Diffstat (limited to 'newlib')
-rw-r--r--newlib/libc/sys/phoenix/machine/configure11
-rw-r--r--newlib/libc/sys/phoenix/machine/configure.ac3
2 files changed, 1 insertions, 13 deletions
diff --git a/newlib/libc/sys/phoenix/machine/configure b/newlib/libc/sys/phoenix/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='arm
-esirisc
-i386
-powerpc'
+ac_subdirs_all='arm'
# Initialize some variables set by options.
ac_init_help=
@@ -4270,12 +4267,6 @@ if test -n "${machine_dir}"; then
subdirs="$subdirs arm"
;;
- esirisc) subdirs="$subdirs esirisc"
- ;;
- i386) subdirs="$subdirs i386"
- ;;
- powerpc) subdirs="$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