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
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-02-19 07:46:44 +0300
committerMike Frysinger <vapier@gentoo.org>2022-02-25 03:10:39 +0300
commit15d7e0d417004570db92e7c75b72747bce75dda5 (patch)
treef12dd007e4ee2008b7ca1f7651965e827ead903a /libgloss/configure.ac
parent7edb25725de4321255d8bfb983748c3fe1a14364 (diff)
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 66691f283..a656fe185 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])