aboutsummaryrefslogtreecommitdiff
path: root/libgloss/configure.ac
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-02-18 23:46:44 -0500
committerMike Frysinger <vapier@gentoo.org>2022-02-24 19:10:39 -0500
commit15d7e0d417004570db92e7c75b72747bce75dda5 (patch)
treef12dd007e4ee2008b7ca1f7651965e827ead903a /libgloss/configure.ac
parent7edb25725de4321255d8bfb983748c3fe1a14364 (diff)
downloadnewlib-15d7e0d417004570db92e7c75b72747bce75dda5.zip
newlib-15d7e0d417004570db92e7c75b72747bce75dda5.tar.gz
newlib-15d7e0d417004570db92e7c75b72747bce75dda5.tar.bz2
libgloss: finish migration to AM_PROG_AS
When merging iq2000 up a level, it included a partial conversion to AM_PROG_AS in the common directory. Finish it for all directories to kill off the custom LIB_AM_PROG_AS which we no longer need since we require Automake 1.15 now.
Diffstat (limited to 'libgloss/configure.ac')
-rw-r--r--libgloss/configure.ac4
1 files changed, 1 insertions, 3 deletions
diff --git a/libgloss/configure.ac b/libgloss/configure.ac
index 66691f2..a656fe1 100644
--- a/libgloss/configure.ac
+++ b/libgloss/configure.ac
@@ -250,15 +250,13 @@ dnl fi
AM_CONDITIONAL(CONFIG_LIBNOSYS, test x$config_libnosys = xtrue)
AC_PROG_CC
-AS=${AS-as}
-AC_SUBST(AS)
+AM_PROG_AS
AC_CHECK_PROG(AR, ar, ar, :)
AR=${AR-ar}
AC_SUBST(AR)
LD=${LD-ld}
AC_SUBST(LD)
AC_PROG_RANLIB
-AM_PROG_AS
AC_DEFINE(HAVE_GNU_LD, 1, [Using GNU LD])