[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[automake-commit] branch master updated: AM_PROG_AR: require before AC_P
From: |
Mike Frysinger |
Subject: |
[automake-commit] branch master updated: AM_PROG_AR: require before AC_PROG_AR |
Date: |
Mon, 31 Jan 2022 21:40:53 -0500 |
This is an automated email from the git hooks/post-receive script.
vapier pushed a commit to branch master
in repository automake.
View the commit online:
https://git.savannah.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=d096d4e67cc186fff2be1b3b70ce9072ea4eef14
The following commit(s) were added to refs/heads/master by this push:
new d096d4e67 AM_PROG_AR: require before AC_PROG_AR
d096d4e67 is described below
commit d096d4e67cc186fff2be1b3b70ce9072ea4eef14
Author: Mike Frysinger <vapier@gentoo.org>
AuthorDate: Mon Jan 31 02:40:14 2022 -0500
AM_PROG_AR: require before AC_PROG_AR
The new autoconf AC_PROG_AR macro has similar logic to what we have in
AM_PROG_AR, but less than what we need (since autoconf doesn't support
the MS archiver), so make sure we are run before AC_PROG_AR.
* m4/ar-lib.m4: Call AC_BEFORE for AC_PROG_AR.
---
m4/ar-lib.m4 | 1 +
1 file changed, 1 insertion(+)
diff --git a/m4/ar-lib.m4 b/m4/ar-lib.m4
index 0bd2f6bf9..1b5a0272a 100644
--- a/m4/ar-lib.m4
+++ b/m4/ar-lib.m4
@@ -13,6 +13,7 @@
AC_DEFUN([AM_PROG_AR],
[AC_BEFORE([$0], [LT_INIT])dnl
AC_BEFORE([$0], [AC_PROG_LIBTOOL])dnl
+AC_BEFORE([$0], [AC_PROG_AR])dnl
AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
AC_REQUIRE_AUX_FILE([ar-lib])dnl
AC_CHECK_TOOLS([AR], [ar lib "link -lib"], [false])
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [automake-commit] branch master updated: AM_PROG_AR: require before AC_PROG_AR,
Mike Frysinger <=