gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 1/2] configure: fix AR_FLAGS initialisation typo


From: Sam James
Subject: [PATCH 1/2] configure: fix AR_FLAGS initialisation typo
Date: Fri, 29 Oct 2021 11:21:53 +0100

Before this fix, the ./configure output looks like:
```
checking the archiver (x86_64-pc-linux-gnu-ar) interface... ar
./configure: line 7069: AR_FLAGS: command not found
```

Remove extraneous spaces around the assignment to
make it work correctly.

Signed-off-by: Sam James <sam@gentoo.org>
---
 ChangeLog    | 4 ++++
 configure    | 2 +-
 configure.ac | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 03629ca8..d2d7b954 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2021-10-29         Sam James             <sam@gentoo.org>
+
+       * configure.ac: Fix AR_FLAGS assignment typo.
+
 2021-10-27         Arnold D. Robbins     <arnold@skeeve.com>
 
        * 5.1.1: Release tar ball made.
diff --git a/configure b/configure
index 521fa6a4..31c5eafa 100755
--- a/configure
+++ b/configure
@@ -7066,7 +7066,7 @@ unknown)
 esac
 
 
-AR_FLAGS = cru         # set default
+AR_FLAGS=cru           # set default
 
 
 # This is mainly for my use during testing and development.
diff --git a/configure.ac b/configure.ac
index 82f0d98a..dca2dbe1 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
+AR_FLAGS=cru           # set default
 AC_SUBST(AR)
 
 # This is mainly for my use during testing and development.
-- 
2.33.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]