aboutsummaryrefslogtreecommitdiff
path: root/libgloss/bfin/configure.ac
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-01-23 01:10:33 -0500
committerMike Frysinger <vapier@gentoo.org>2022-01-26 04:32:54 -0500
commit754f8def0dfeeb43afa5a96ad1971fd0ef02c419 (patch)
tree52e4bbf751464d0252ca724046369a6b2ff8d7fd /libgloss/bfin/configure.ac
parentc0bf2d68f94da09df109d07f79346ea21540efb5 (diff)
downloadnewlib-754f8def0dfeeb43afa5a96ad1971fd0ef02c419.zip
newlib-754f8def0dfeeb43afa5a96ad1971fd0ef02c419.tar.gz
newlib-754f8def0dfeeb43afa5a96ad1971fd0ef02c419.tar.bz2
libgloss: merge stub arch configure scripts up a level
For about half the ports, we don't need a subdir configure script. They're using the config/default.m[ht] rules, and they aren't doing any unique configure tests, so they exist just to pass top-level settings down to create the arch Makefile. We can just as easily do that from the top-level Mkaefile directly and skip configure. Most of the remaining configure scripts could be migrated up to the top-level too, but that would require care in each subdir. So let's be lazy and put that off to another day.
Diffstat (limited to 'libgloss/bfin/configure.ac')
-rw-r--r--libgloss/bfin/configure.ac39
1 files changed, 0 insertions, 39 deletions
diff --git a/libgloss/bfin/configure.ac b/libgloss/bfin/configure.ac
deleted file mode 100644
index 8755780..0000000
--- a/libgloss/bfin/configure.ac
+++ /dev/null
@@ -1,39 +0,0 @@
-dnl Process this file with autoconf to produce a configure script.
-AC_INIT(crt0.S)
-
-AC_CONFIG_AUX_DIR(../..)
-
-AC_CANONICAL_SYSTEM
-AC_ARG_PROGRAM
-
-AC_PROG_INSTALL
-
-LIB_AC_PROG_CC
-AS=${AS-as}
-AC_SUBST(AS)
-AR=${AR-ar}
-AC_SUBST(AR)
-LD=${LD-ld}
-AC_SUBST(LD)
-AC_PROG_RANLIB
-LIB_AM_PROG_AS
-
-host_makefile_frag=${srcdir}/../config/default.mh
-
-dnl We have to assign the same value to other variables because autoconf
-dnl doesn't provide a mechanism to substitute a replacement keyword with
-dnl arbitrary data or pathnames.
-dnl
-host_makefile_frag_path=$host_makefile_frag
-AC_SUBST(host_makefile_frag_path)
-AC_SUBST_FILE(host_makefile_frag)
-
-AC_CONFIG_FILES(Makefile,
-. ${srcdir}/../../config-ml.in,
-srcdir=${srcdir}
-target=${target}
-with_multisubdir=${with_multisubdir}
-ac_configure_args="${ac_configure_args} --enable-multilib"
-CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
-)
-AC_OUTPUT