diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-11-03 21:00:36 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-11-03 21:00:36 +0200 |
commit | 0e36f3675efeb5d1d551fe6883f297e038e12772 (patch) | |
tree | 1b661817a8d021e085aac0427d30a287f0bd17a9 | |
parent | 2b1fffef190f46f6c0da770bba2745f6574bebca (diff) | |
download | egawk-0e36f3675efeb5d1d551fe6883f297e038e12772.tar.gz egawk-0e36f3675efeb5d1d551fe6883f297e038e12772.tar.bz2 egawk-0e36f3675efeb5d1d551fe6883f297e038e12772.zip |
Fix ARFLAGS in configure.ac.
-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. |