diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2021-11-03 Sam James <sam@gentoo.org> + + * configure.ac: Fix AR_FLAGS assignment typo. + * configure.ac: Rename AR_FLAGS to ARFLAGS. + 2021-10-27 Arnold D. Robbins <arnold@skeeve.com> * 5.1.1: Release tar ball made. @@ -7066,7 +7066,7 @@ unknown) esac -AR_FLAGS = cru # set default +ARFLAGS=cru # set default # This is mainly for my use during testing and development. diff --git a/configure.ac b/configure.ac index ff12dec1..2cb595ca 100644 --- a/configure.ac +++ b/configure.ac @@ -111,7 +111,7 @@ AC_PROG_MAKE_SET # support/ builds libsupport.a, allow for cross version of ar AM_PROG_AR -AR_FLAGS = cru # set default +ARFLAGS=cru # set default AC_SUBST(AR) # This is mainly for my use during testing and development. |